public static interface DatabaseClient.InsertIntoSpec
INSERT options leading to the exchange.| Modifier and Type | Method and Description |
|---|---|
<T> DatabaseClient.TypedInsertSpec<T> |
into(Class<T> table)
Specify the target table to insert to using the
entity class. |
DatabaseClient.GenericInsertSpec<Map<String,Object>> |
into(org.springframework.data.relational.core.sql.SqlIdentifier table)
Specify the target
table to insert into. |
default DatabaseClient.GenericInsertSpec<Map<String,Object>> |
into(String table)
Specify the target
table to insert into. |
default DatabaseClient.GenericInsertSpec<Map<String,Object>> into(String table)
table to insert into.table - must not be null or empty.DatabaseClient.GenericInsertSpec for further configuration of the insert. Guaranteed to be not
null.SqlIdentifier.unquoted(String)DatabaseClient.GenericInsertSpec<Map<String,Object>> into(org.springframework.data.relational.core.sql.SqlIdentifier table)
table to insert into.table - must not be null or empty.DatabaseClient.GenericInsertSpec for further configuration of the insert. Guaranteed to be not
null.<T> DatabaseClient.TypedInsertSpec<T> into(Class<T> table)
entity class.table - must not be null.DatabaseClient.TypedInsertSpec for further configuration of the insert. Guaranteed to be not null.Copyright © 2018–2022 Pivotal Software, Inc.. All rights reserved.