DatabaseSelect<T> |
DatabaseSelect.args(java.lang.Object... args) |
Binds arguments to this select
|
DatabaseSelect<T> |
DatabaseSelect.args(java.util.Collection<?> args) |
Binds arguments to this select
|
DatabaseSelect<T> |
DatabaseSelect.fetchSize(int fetchSize) |
Sets the statement fetch size for this operation
|
DatabaseSelect<T> |
DatabaseSelect.limit(int limit) |
Sets the max number of records to include
|
<T> DatabaseSelect<T> |
Database.select(java.lang.Class<T> type) |
Returns a new select operation for the type specified
|
DatabaseSelect<T> |
DatabaseSelect.sql(java.lang.String sql) |
Binds a custom SQL statement to this select
|
DatabaseSelect<T> |
DatabaseSelect.timeout(java.time.Duration duration) |
Sets the query timeout for this select
|