class isql::ResultSet

sys::Obj
  isql::ResultSet

ResultSet is a query result Cursor. See pod-doc.

close

Void close()

Release resource

col

Col? col(Str name, Bool checked := true)

Get a column by name. If not found and checked is true then throw ArgErr, otherwise return null.

cols

List<Col> cols()

Get a read-only list of the columns.

get

Obj? get(Int i)

Get column value. See type mapping.

moveTo

Bool moveTo(Int pos)

Move the cursor to an absolute position..

next

Bool next()

Move the cursor to the next row.