Modifier and Type | Method and Description |
---|---|
PostgresqlStatement |
add() |
PostgresqlStatement |
bind(int index,
Object value) |
PostgresqlStatement |
bind(String identifier,
Object value) |
PostgresqlStatement |
bindNull(int index,
Class<?> type) |
PostgresqlStatement |
bindNull(String identifier,
Class<?> type) |
Flux<PostgresqlResult> |
execute() |
default PostgresqlStatement |
fetchSize(int rows) |
PostgresqlStatement |
returnGeneratedValues(String... columns) |
PostgresqlStatement add()
PostgresqlStatement bind(String identifier, Object value)
bind
in interface Statement
IllegalArgumentException
- if identifier
is not a String
like $1
, $2
, etc.PostgresqlStatement bind(int index, Object value)
PostgresqlStatement bindNull(String identifier, Class<?> type)
bindNull
in interface Statement
IllegalArgumentException
- if identifier
is not a String
like $1
, $2
, etc.PostgresqlStatement bindNull(int index, Class<?> type)
Flux<PostgresqlResult> execute()
default PostgresqlStatement fetchSize(int rows)
PostgresqlStatement returnGeneratedValues(String... columns)
returnGeneratedValues
in interface Statement
IllegalStateException
- if this Statement
already has a RETURNING clause
or isn't a DELETE
, INSERT
, or UPDATE
command.Copyright © 2019. All rights reserved.