public static interface DatabaseClient.TypedUpdateSpec<T>
UPDATE
options leading to the exchange.Modifier and Type | Method and Description |
---|---|
DatabaseClient.TypedUpdateSpec<T> |
table(org.springframework.data.relational.core.sql.SqlIdentifier tableName)
Use the given
tableName as update target. |
default DatabaseClient.TypedUpdateSpec<T> |
table(String tableName)
Use the given
tableName as update target. |
DatabaseClient.UpdateMatchingSpec |
using(T objectToUpdate)
Update the given
objectToUpdate . |
DatabaseClient.UpdateMatchingSpec using(T objectToUpdate)
objectToUpdate
.objectToUpdate
- the object of which the attributes will provide the values for the update and the primary
key. Must not be null.DatabaseClient.UpdateMatchingSpec
for further configuration of the update. Guaranteed to be not null.default DatabaseClient.TypedUpdateSpec<T> table(String tableName)
tableName
as update target.tableName
- must not be null or empty.DatabaseClient.TypedUpdateSpec
for further configuration of the update. Guaranteed to be not null.SqlIdentifier.unquoted(String)
DatabaseClient.TypedUpdateSpec<T> table(org.springframework.data.relational.core.sql.SqlIdentifier tableName)
tableName
as update target.tableName
- must not be null or empty.DatabaseClient.TypedUpdateSpec
for further configuration of the update. Guaranteed to be not null.Copyright © 2018–2022 Pivotal Software, Inc.. All rights reserved.