Uses of Interface
org.springframework.data.cassandra.core.cql.PreparedStatementBinder
Packages that use PreparedStatementBinder
Package
Description
Apache Cassandra core support.
CQL core support.
CQL legacy core asynchronous support for easier migration.
Apache Cassandra legacy asynchronous support for easier migration.
-
Uses of PreparedStatementBinder in org.springframework.data.cassandra.core
Subinterfaces of PreparedStatementBinder in org.springframework.data.cassandra.coreModifier and TypeInterfaceDescriptionstatic interfaceGeneral callback interface used to create and bind prepared CQL statements.static interfaceGeneral callback interface used to create and bind prepared CQL statements.Classes in org.springframework.data.cassandra.core that implement PreparedStatementBinderModifier and TypeClassDescriptionstatic classUtility class to prepare aSimpleStatementand bind values associated with the statement to aBoundStatement.static classUtility class to prepare aSimpleStatementand bind values associated with the statement to aBoundStatement. -
Uses of PreparedStatementBinder in org.springframework.data.cassandra.core.cql
Classes in org.springframework.data.cassandra.core.cql that implement PreparedStatementBinderModifier and TypeClassDescriptionclassSimple adapter forPreparedStatementBinderthat applies a given array of arguments.Methods in org.springframework.data.cassandra.core.cql that return PreparedStatementBinderModifier and TypeMethodDescriptionprotected PreparedStatementBinderReactiveCqlTemplate.newArgPreparedStatementBinder(Object[] args) Create a new arg-based PreparedStatementSetter using the args passed in.protected PreparedStatementBinderCassandraAccessor.newPreparedStatementBinder(Object[] args) Create a new arg-based PreparedStatementSetter using the args passed in.Methods in org.springframework.data.cassandra.core.cql with parameters of type PreparedStatementBinderModifier and TypeMethodDescriptionAsyncCqlOperations.execute(String cql, PreparedStatementBinder psb) Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.AsyncCqlTemplate.execute(String cql, PreparedStatementBinder psb) booleanCqlOperations.execute(String cql, PreparedStatementBinder psb) Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.booleanCqlTemplate.execute(String cql, PreparedStatementBinder psb) reactor.core.publisher.Mono<Boolean>ReactiveCqlOperations.execute(String cql, PreparedStatementBinder psb) Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.reactor.core.publisher.Mono<Boolean>ReactiveCqlTemplate.execute(String cql, PreparedStatementBinder psb) <T> CompletableFuture<T>AsyncCqlOperations.query(String cql, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Query using a prepared statement, reading theResultSetwith aAsyncResultSetExtractor.AsyncCqlOperations.query(String cql, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> CompletableFuture<List<T>>AsyncCqlOperations.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> CompletableFuture<T>AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSetwith aAsyncResultSetExtractor.AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> CompletableFuture<List<T>>AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> CompletableFuture<T>AsyncCqlTemplate.query(String cql, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) AsyncCqlTemplate.query(String cql, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) <T> CompletableFuture<List<T>>AsyncCqlTemplate.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> CompletableFuture<T>AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) <T> CompletableFuture<List<T>>AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> TCqlOperations.query(String cql, PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) Query using a prepared statement, reading theResultSetwith aResultSetExtractor.voidCqlOperations.query(String cql, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> List<T>CqlOperations.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> TCqlOperations.query(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSetwith aResultSetExtractor.voidCqlOperations.query(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> List<T>CqlOperations.query(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> TCqlTemplate.query(String cql, PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) voidCqlTemplate.query(String cql, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) <T> List<T>CqlTemplate.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> TCqlTemplate.query(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) voidCqlTemplate.query(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) <T> List<T>CqlTemplate.query(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> reactor.core.publisher.Flux<T>ReactiveCqlOperations.query(String cql, PreparedStatementBinder psb, ReactiveResultSetExtractor<T> rse) Query using a prepared statement, reading theReactiveResultSetwith aReactiveResultSetExtractor.<T> reactor.core.publisher.Flux<T>ReactiveCqlOperations.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query given CQL to create a prepared statement from CQL and aPreparedStatementBinder implementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> reactor.core.publisher.Flux<T>ReactiveCqlOperations.query(ReactivePreparedStatementCreator psc, PreparedStatementBinder psb, ReactiveResultSetExtractor<T> rse) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theReactiveResultSetwith aResultSetExtractor.<T> reactor.core.publisher.Flux<T>ReactiveCqlOperations.query(ReactivePreparedStatementCreator psc, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> reactor.core.publisher.Flux<T>ReactiveCqlTemplate.query(String cql, PreparedStatementBinder psb, ReactiveResultSetExtractor<T> rse) <T> reactor.core.publisher.Flux<T>ReactiveCqlTemplate.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> reactor.core.publisher.Flux<T>ReactiveCqlTemplate.query(ReactivePreparedStatementCreator psc, PreparedStatementBinder preparedStatementBinder, ReactiveResultSetExtractor<T> rse) Query using a prepared statement, reading theReactiveResultSetwith aReactiveResultSetExtractor.<T> reactor.core.publisher.Flux<T>ReactiveCqlTemplate.query(ReactivePreparedStatementCreator psc, PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Stream<T>CqlOperations.queryForStream(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapperand turning it into an iterableStream.<T> Stream<T>CqlTemplate.queryForStream(PreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) -
Uses of PreparedStatementBinder in org.springframework.data.cassandra.core.cql.legacy
Methods in org.springframework.data.cassandra.core.cql.legacy with parameters of type PreparedStatementBinderModifier and TypeMethodDescriptionAsyncCqlOperations.execute(String cql, PreparedStatementBinder psb) Deprecated, for removal: This API element is subject to removal in a future version.Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.AsyncCqlTemplate.execute(String cql, PreparedStatementBinder psb) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>AsyncCqlOperations.query(String cql, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement, reading theResultSetwith aAsyncResultSetExtractor.AsyncCqlOperations.query(String cql, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> ListenableFuture<List<T>>AsyncCqlOperations.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version.Query given CQL to create a prepared statement from CQL and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> ListenableFuture<T>AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSetwith aAsyncResultSetExtractor.AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> ListenableFuture<List<T>>AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.<T> ListenableFuture<T>AsyncCqlTemplate.query(String cql, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.AsyncCqlTemplate.query(String cql, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<List<T>>AsyncCqlTemplate.query(String cql, PreparedStatementBinder psb, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<List<T>>AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of PreparedStatementBinder in org.springframework.data.cassandra.core.legacy
Subinterfaces of PreparedStatementBinder in org.springframework.data.cassandra.core.legacyModifier and TypeInterfaceDescriptionstatic interfaceDeprecated, for removal: This API element is subject to removal in a future version.General callback interface used to create and bind prepared CQL statements.Classes in org.springframework.data.cassandra.core.legacy that implement PreparedStatementBinderModifier and TypeClassDescriptionstatic classDeprecated, for removal: This API element is subject to removal in a future version.Utility class to prepare aSimpleStatementand bind values associated with the statement to aBoundStatement.