Object | +--DatabaseObject.RowSet
| SUMMARY: Constructor | Properties | Methods | DETAIL: Constructor | Properties | Methods |
| Methods Summary | |
Number
|
getColumnCount()
Get the number of columns of this result, identical to the length attribute. |
String
|
getColumnDatatypeName()
Get the name of the datatype associated with the column. |
Number
|
getColumnDatatypeNumber()
Get the number of the datatype associated with the column. |
Object
|
getColumnItem(<String> name)
Get the value of a column by its name (the value can be accessed by number simply indexing them - this is not faster than by name for FESI). |
String
|
getColumnName()
Get the name of a column, in a way which is always working. |
Object
|
getLastError()
Return the last error which occured when connecting or executing a statement, null (which test as false) if none. |
void
|
getMetaData()
Return the meta data attached to the row set. |
Boolean
|
hasMoreRows()
Optimistic view of the possibility that more rows are present. |
Boolean
|
next()
Get the next row of results, return true if there is a next row, false otherwise. |
| Method Detail |
Number getColumnCount()
String getColumnDatatypeName()
Number getColumnDatatypeNumber()
Object getColumnItem(<String> name)
name - as String, name of the column
String getColumnName()
Object getLastError()
void getMetaData()
Boolean hasMoreRows()
Boolean next()
| SUMMARY: Constructor | Properties | Methods | DETAIL: Constructor | Properties | Methods |