UpsertClause |
UpsertClause.action(@NonNull UpsertAction action) |
The action to perform on upsert
|
UpsertClause |
UpsertClause.doNothing() |
Do nothing on upsert
|
UpsertClause |
UpsertClause.doUpdateSet() |
Perform an update on upsert
|
UpsertClause |
UpsertClause.indexedColumns(@NonNull SQLElement... columns) |
Sets the columns that specifies the keys (indexed columns) for the upsert
|
UpsertClause |
UpsertClause.indexedColumns(@NonNull String... columns) |
Sets the columns that specifies the keys (indexed columns) for the upsert
|
UpsertClause |
UpsertClause.indexedColumns(@NonNull Collection<? extends SQLElement> columns) |
Sets the columns that specifies the keys (indexed columns) for the upsert
|
UpsertClause |
UpsertClause.indexedParameters() |
Indexed parameters upsert clause.
|
UpsertClause |
UpsertClause.indexedWhere(SQLElement whereClause) |
Sets the criteria (i.e.
|
UpsertClause |
UpsertClause.indexedWhere(String whereClause) |
Sets the criteria (i.e.
|
UpsertClause |
UpsertClause.set(@NonNull SQLElement column,
@NonNull SQLElement value) |
Adds a set parameter to the update defined as a column and value.
|
UpsertClause |
UpsertClause.set(@NonNull String column,
@NonNull SQLElement value) |
Adds a set parameter to the update defined as a column and value.
|
UpsertClause |
UpsertClause.setIndexedParameter(@NonNull SQLElement column) |
Adds a set parameter for the given column and using an indexed parameter value for use in PreparedStatement
|
UpsertClause |
UpsertClause.setNamedParameter(@NonNull SQLElement column) |
|
UpsertClause |
UpsertClause.updateWhere(SQLElement whereClause) |
Sets the criteria (i.e.
|
UpsertClause |
UpsertClause.updateWhere(String whereClause) |
Sets the criteria (i.e.
|
static UpsertClause |
UpsertClause.upsert() |
Creates a new Upsert clause
|
static UpsertClause |
UpsertClause.upsert(@NonNull SQLElement... columns) |
Creates a new Upsert clause with given columns as the keys (indexed columns)
|
static UpsertClause |
UpsertClause.upsert(@NonNull String... columns) |
Creates a new Upsert clause with given columns as the keys (indexed columns)
|