Package | Description |
---|---|
org.springframework.data.r2dbc.core |
Core domain types around DatabaseClient.
|
Modifier and Type | Method and Description |
---|---|
DatabaseClient.GenericInsertSpec<Map<String,Object>> |
DatabaseClient.InsertIntoSpec.into(org.springframework.data.relational.core.sql.SqlIdentifier table)
Specify the target
table to insert into. |
default DatabaseClient.GenericInsertSpec<Map<String,Object>> |
DatabaseClient.InsertIntoSpec.into(String table)
Specify the target
table to insert into. |
default DatabaseClient.GenericInsertSpec<T> |
DatabaseClient.GenericInsertSpec.nullValue(org.springframework.data.relational.core.sql.SqlIdentifier field,
Class<?> type)
Specify a null value to insert.
|
default DatabaseClient.GenericInsertSpec<T> |
DatabaseClient.GenericInsertSpec.nullValue(String field,
Class<?> type)
Specify a null value to insert.
|
DatabaseClient.GenericInsertSpec<T> |
DatabaseClient.GenericInsertSpec.value(org.springframework.data.relational.core.sql.SqlIdentifier field,
Object value)
Specify a field and non-null value to insert.
|
default DatabaseClient.GenericInsertSpec<T> |
DatabaseClient.GenericInsertSpec.value(String field,
Object value)
Specify a field and non-null value to insert.
|
Copyright © 2018–2022 Pivotal Software, Inc.. All rights reserved.