Fetch size in rows.
Fetch size in rows.
java.sql.Statement.setFetchSize(int)
Execute query and call receiver function per result object.
Execute query and call receiver function per result object.
SQL statement token
Parameters for statement, if any
The result object receiver function, which
is expected to return true to receive next object, false to stop
Execute query and return sequence of all results.
Execute query and return sequence of all results.
The token of the statement to execute
Optional SQL parameters
The sequence of results.
Execute query without calling back.
Execute query without calling back. It is expected that the QueryExtractor handles all objects extracted.
ID of SQL statement
Parameters for statement, if any
Execute query that will return 0-1 rows (by id, a JOIN of course can return more rows, but only one object).
Execute query that will return 0-1 rows (by id, a JOIN of course can return more rows, but only one object).
Optional SQL parameters
The selected row, or None
Execute query and return the top results
as defined by the count parameter.
Execute query and return the top results
as defined by the count parameter.
The top number of results to return
The token of the statement to execute
Optional SQL parameters
The sequence of results.
Timeout in seconds.
Timeout in seconds. Will cause a TimeoutException if an execution takes longer than the given time. 0 means no limit.
java.sql.Statement#setQueryTimeout(int)
The public interface for querying and calling procedures in either read-only mode, or transactional.