SqlResult

Represents the result of an operation on database. @param <T>

Members

Functions

columnsNames
string[] columnsNames()

Get the names of columns in the PgResult.

next
SqlResult!(T) next()

Return the next available result or {@code null}, e.g for a simple query that executed multiple queries or for a batch result.

property
Variant property(string key)

Get the property with the specified {@link PropertyKind}.

rowCount
int rowCount()

Get the number of the affected rows in the operation to this PgResult. <p/> The meaning depends on the executed statement: <ul> <li>INSERT: the number of rows inserted</li> <li>DELETE: the number of rows deleted</li> <li>UPDATE: the number of rows updated</li> <li>SELECT: the number of rows retrieved</li> </ul>

size
int size()

Get the number of rows in the PgResult.

toString
string toString()
Undocumented in source.
value
T value()

Get the result value.

Meta