public class SqlServerResultSet implements ResultSet:
In-memory SQL Server result set.
import klyn.databases.sql.sqlserver
rows = SqlServerResultSet.empty()
while rows.next():
print(rows.getString("name"))| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | afterLastafterLast as Boolean: |
No summary. |
| public readonly property | beforeFirstbeforeFirst as Boolean: |
No summary. |
| public readonly property | closedclosed as Boolean: |
No summary. |
| public readonly property | concurrencyconcurrency as ResultSetConcurrency: |
No summary. |
| public property | fetchDirectionfetchDirection as FetchDirection: |
No summary. |
| public property | fetchSizefetchSize as Int: |
No summary. |
| public readonly property | holdabilityholdability as ResultSetHoldability: |
No summary. |
| public readonly property | lastReadWasNulllastReadWasNull as Boolean: |
No summary. |
| public readonly property | metadatametadata as ResultSetMetaData: |
No summary. |
| public readonly property | resultSetTyperesultSetType as ResultSetType: |
No summary. |
| public readonly property | rowNumberrowNumber as Int: |
No summary. |
| public readonly property | statementstatement as Statement: |
No summary. |
| public readonly property | warningwarning as SQLWarning: |
No summary. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | absoluteabsolute(rowNumber as Int) as Boolean throws SQLException: |
Moves the result-set cursor. |
| public | clearWarningsclearWarnings() as Void: |
No summary. |
| public override | closeclose() as Void: |
No summary. |
| public static | emptyempty(statement as Statement = null) as SqlServerResultSet: |
No summary. |
| public | firstfirst() as Boolean throws SQLException: |
Moves the result-set cursor. |
| public | getBooleangetBoolean(column as Object) as Boolean throws SQLException: |
Reads data from the current result-set row. |
| public | getDateTimegetDateTime(column as Object) as DateTime throws SQLException: |
Reads data from the current result-set row. |
| public | getDoublegetDouble(column as Object) as Double throws SQLException: |
Reads data from the current result-set row. |
| public | getIntgetInt(column as Object) as Int throws SQLException: |
Reads data from the current result-set row. |
| public | getLonggetLong(column as Object) as Long throws SQLException: |
Reads data from the current result-set row. |
| public | getObjectgetObject(column as Object) as Object throws SQLException: |
Reads data from the current result-set row. |
| public | getStringgetString(column as Object) as String throws SQLException: |
Reads data from the current result-set row. |
| public | lastlast() as Boolean throws SQLException: |
Moves the result-set cursor. |
| public | moveAfterLastmoveAfterLast() as Void throws SQLException: |
Moves the result-set cursor. |
| public | moveBeforeFirstmoveBeforeFirst() as Void throws SQLException: |
Moves the result-set cursor. |
| public | nextnext() as Boolean throws SQLException: |
Moves the result-set cursor. |
| public | previousprevious() as Boolean throws SQLException: |
Moves the result-set cursor. |
| public | relativerelative(offset as Int) as Boolean throws SQLException: |
Moves the result-set cursor. |
| public | wasNullwasNull() as Boolean throws SQLException: |
Reads data from the current result-set row. |