| Package | Description |
|---|---|
| org.springframework.cassandra.core |
CQL core support.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
CqlTemplate.execute(PreparedStatementCreator preparedStatementCreator,
PreparedStatementCallback<T> preparedStatementCallback) |
<T> T |
CqlOperations.execute(PreparedStatementCreator psc,
PreparedStatementCallback<T> action)
Uses the provided
PreparedStatementCreator to create a PreparedStatement in the current
Session, then passes that PreparedStatement to the given PreparedStatementCallback. |
<T> T |
CqlTemplate.execute(String cql,
PreparedStatementCallback<T> callback) |
<T> T |
CqlOperations.execute(String cql,
PreparedStatementCallback<T> action)
Creates and caches a
PreparedStatement from the given CQL, invokes the PreparedStatementCallback
with that PreparedStatement, then returns the value returned by the PreparedStatementCallback. |
Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.