public static interface DatabaseClient.SelectFromSpec
SELECT
options leading to the exchange.Modifier and Type | Method and Description |
---|---|
<T> DatabaseClient.TypedSelectSpec<T> |
from(Class<T> table)
Specify the source table to select from to using the
entity class . |
DatabaseClient.GenericSelectSpec |
from(org.springframework.data.relational.core.sql.SqlIdentifier table)
Specify the source
table to select from. |
default DatabaseClient.GenericSelectSpec |
from(String table)
Specify the source
table to select from. |
default DatabaseClient.GenericSelectSpec from(String table)
table
to select from.table
- must not be null or empty.DatabaseClient.GenericSelectSpec
for further configuration of the select. Guaranteed to be not
null.SqlIdentifier.unquoted(String)
DatabaseClient.GenericSelectSpec from(org.springframework.data.relational.core.sql.SqlIdentifier table)
table
to select from.table
- must not be null or empty.DatabaseClient.GenericSelectSpec
for further configuration of the select. Guaranteed to be not
null.<T> DatabaseClient.TypedSelectSpec<T> from(Class<T> table)
entity class
.table
- must not be null.DatabaseClient.TypedSelectSpec
for further configuration of the select. Guaranteed to be not null.Copyright © 2018–2022 Pivotal Software, Inc.. All rights reserved.