PostgreSQLResultSet
classin packageklyn.databases.sql.postgresql
public class PostgreSQLResultSet implements ResultSet:
PostgreSQLResultSet
All Implemented Interfaces: ResultSet

PostgreSQL result set.

Properties
Modifier and Type Member Description
public readonly property closed
closed as Boolean:
No summary.
public readonly property concurrency
concurrency as ResultSetConcurrency:
No summary.
public readonly property fetchDirection
fetchDirection as FetchDirection:
No summary.
public readonly property fetchSize
fetchSize as Int:
No summary.
public readonly property holdability
holdability as ResultSetHoldability:
No summary.
public readonly property metadata
metadata as ResultSetMetaData:
No summary.
public readonly property statement
statement as Statement:
No summary.
public readonly property type
type as ResultSetType:
No summary.
public readonly property warning
warning as SQLWarning:
No summary.
Properties inherited from ResultSet: afterLast, beforeFirst, closed, concurrency, fetchDirection, fetchSize, holdability, lastReadWasNull, metadata, resultSetType, rowNumber, statement, warning
Methods
Modifier and Type Member Description
public absolute
absolute(row as Int) as Boolean:
No summary.
public afterLast
afterLast() as Void:
No summary.
public beforeFirst
beforeFirst() as Void:
No summary.
public clearWarnings
clearWarnings() as Void:
No summary.
public close
close() as Void:
No summary.
public static empty
empty(statement as Statement) as PostgreSQLResultSet:
No summary.
public first
first() as Boolean:
No summary.
public getBoolean
getBoolean(column as Object) as Boolean throws SQLException:
Reads data from the current result-set row.
public getByte
getByte(column as Object) as SByte throws SQLException:
Reads data from the current result-set row.
public getBytes
getBytes(column as Object) as Byte[] throws SQLException:
Reads data from the current result-set row.
public getDateTime
getDateTime(column as Object) as DateTime throws SQLException:
Reads data from the current result-set row.
public getDouble
getDouble(column as Object) as Double throws SQLException:
Reads data from the current result-set row.
public getFloat
getFloat(column as Object) as Float throws SQLException:
Reads data from the current result-set row.
public getInt
getInt(column as Object) as Int throws SQLException:
Reads data from the current result-set row.
public getLong
getLong(column as Object) as Long throws SQLException:
Reads data from the current result-set row.
public getObject
getObject(column as Object) as Object throws SQLException:
Reads data from the current result-set row.
public getRow
getRow() as Int:
No summary.
public getShort
getShort(column as Object) as Short throws SQLException:
Reads data from the current result-set row.
public getString
getString(column as Object) as String throws SQLException:
Reads data from the current result-set row.
public isAfterLast
isAfterLast() as Boolean:
No summary.
public isBeforeFirst
isBeforeFirst() as Boolean:
No summary.
public isFirst
isFirst() as Boolean:
No summary.
public isLast
isLast() as Boolean:
No summary.
public last
last() as Boolean:
No summary.
public next
next() as Boolean:
No summary.
public previous
previous() as Boolean:
No summary.
public relative
relative(rows as Int) as Boolean:
No summary.
public wasNull
wasNull() as Boolean:
No summary.
Methods inherited from ResultSet: absolute, clearWarnings, first, getBoolean, getDateTime, getDouble, getInt, getLong, getObject, getString, last, moveAfterLast, moveBeforeFirst, next, previous, relative, wasNull
Methods inherited from AutoClosable: close