Package | Description |
---|---|
com.datastax.oss.driver.api.core.cql |
Modifier and Type | Method and Description |
---|---|
SimpleStatementBuilder |
SimpleStatementBuilder.addNamedValue(CqlIdentifier name,
Object value) |
SimpleStatementBuilder |
SimpleStatementBuilder.addNamedValue(String name,
Object value)
Shortcut for
addNamedValue(CqlIdentifier.fromCql(name), value) . |
SimpleStatementBuilder |
SimpleStatementBuilder.addPositionalValue(Object value) |
SimpleStatementBuilder |
SimpleStatementBuilder.addPositionalValues(Iterable<Object> values) |
SimpleStatementBuilder |
SimpleStatementBuilder.addPositionalValues(Object... values) |
static SimpleStatementBuilder |
SimpleStatement.builder(SimpleStatement template)
Returns a builder to create an instance of the default implementation, copying the fields of
the given statement.
|
static SimpleStatementBuilder |
SimpleStatement.builder(String query)
Returns a builder to create an instance of the default implementation.
|
SimpleStatementBuilder |
SimpleStatementBuilder.clearNamedValues() |
SimpleStatementBuilder |
SimpleStatementBuilder.clearPositionalValues() |
SimpleStatementBuilder |
SimpleStatementBuilder.setKeyspace(CqlIdentifier keyspace) |
SimpleStatementBuilder |
SimpleStatementBuilder.setKeyspace(String keyspaceName)
Shortcut for
setKeyspace(CqlIdentifier.fromCql(keyspaceName)) . |
SimpleStatementBuilder |
SimpleStatementBuilder.setQuery(String query) |
Copyright © 2017–2024. All rights reserved.