All Bundles
ResultSet
ODBC result set
Operations
Close
Closes a result set
method : public : Close() ~ Nil
GetBit
Gets a bit value
method : public : GetBit(column:Int) ~ Bool
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
Bool | bit value |
Gets a bit value
method : public : GetBit(column:String) ~ Bool
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
Bool | bit value |
GetBlob
Gets a blob value
method : public : GetBlob(column:Int, buffer:Byte[]) ~ Nil
Parameters
Name | Type | Description |
---|
column | Int | column ID |
buffer | Byte[] | buffer to write into |
Gets a blob value
method : public : GetBlob(column:String, buffer:Byte[]) ~ Nil
Parameters
Name | Type | Description |
---|
column | String | column name |
buffer | Byte[] | buffer to write into |
GetDate
Gets a date value
method : public : GetDate(column:Int) ~ Database.ODBC.Date
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
Date | date value |
Gets a date value
method : public : GetDate(column:String) ~ Database.ODBC.Date
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
Date | date value |
GetDouble
Gets a double value
method : public : GetDouble(column:Int) ~ Float
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
Float | double value |
Gets a double value
method : public : GetDouble(column:String) ~ Float
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
Float | double value |
GetInt
Gets an integer value
method : public : GetInt(column:Int) ~ Int
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
Int | integer value |
Gets an integer value
method : public : GetInt(column:String) ~ Int
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
Int | integer value |
GetReal
Gets a real value
method : public : GetReal(column:Int) ~ Float
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
Float | real value |
Gets a real value
method : public : GetReal(column:String) ~ Float
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
Float | real value |
GetSmallInt
Gets a small integer value
method : public : GetSmallInt(column:Int) ~ Int
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
Int | small integer value |
Gets a small integer value
method : public : GetSmallInt(column:String) ~ Int
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
Int | small integer value |
GetTimestamp
Gets a timestamp value
method : public : GetTimestamp(column:Int) ~ Timestamp
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Gets a timestamp value
method : public : GetTimestamp(column:String) ~ Timestamp
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
GetVarchar
Gets a varchar value
method : public : GetVarchar(column:Int) ~ String
Parameters
Name | Type | Description |
---|
column | Int | column ID |
Return
Type | Description |
---|
String | varchar value |
Gets a varchar value
method : public : GetVarchar(column:String) ~ String
Parameters
Name | Type | Description |
---|
column | String | column name |
Return
Type | Description |
---|
String | varchar value |
IsNull
Checks to see if the value fetched is NUL. This method should be called after a value is fetched using GetX(column).
method : public : IsNull() ~ Bool
Return
Type | Description |
---|
Bool | true if NIL, false otherwise |
Next
Moves the cursor to the next row in the result set
method : public : Next() ~ Bool
Return
Type | Description |
---|
Bool | true if cursor was moved, false otherwise |