public interface PostgresqlStatement
extends io.r2dbc.spi.Statement
Statement for a PostgreSQL database.| 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()
add in interface io.r2dbc.spi.StatementPostgresqlStatement bind(String identifier, Object value)
bind in interface io.r2dbc.spi.StatementIllegalArgumentException - if identifier is not a String like $1, $2, …PostgresqlStatement bind(int index, Object value)
bind in interface io.r2dbc.spi.StatementPostgresqlStatement bindNull(String identifier, Class<?> type)
bindNull in interface io.r2dbc.spi.StatementIllegalArgumentException - if identifier is not a String like $1, $2, …PostgresqlStatement bindNull(int index, Class<?> type)
bindNull in interface io.r2dbc.spi.StatementFlux<PostgresqlResult> execute()
execute in interface io.r2dbc.spi.Statementdefault PostgresqlStatement fetchSize(int rows)
fetchSize in interface io.r2dbc.spi.StatementPostgresqlStatement returnGeneratedValues(String... columns)
returnGeneratedValues in interface io.r2dbc.spi.StatementIllegalStateException - if this Statement already has a RETURNING clause or isn't a DELETE, INSERT, or UPDATE commandCopyright © 2024. All rights reserved.