Uses of Interface
org.springframework.data.cassandra.core.cql.PreparedStatementBinder
Packages that use PreparedStatementBinder
Package
Description
Apache Cassandra core support.
CQL core support.
-
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, @Nullable PreparedStatementBinder psb) Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.AsyncCqlTemplate.execute(String cql, @Nullable PreparedStatementBinder psb) booleanCqlOperations.execute(String cql, @Nullable PreparedStatementBinder psb) Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.booleanCqlTemplate.execute(String cql, @Nullable PreparedStatementBinder psb) ReactiveCqlOperations.execute(String cql, @Nullable PreparedStatementBinder psb) Issue an statement using aPreparedStatementBinderto set bind parameters, with given CQL.ReactiveCqlTemplate.execute(String cql, @Nullable PreparedStatementBinder psb) <T extends @Nullable Object>
CompletableFuture<T> AsyncCqlOperations.query(String cql, @Nullable PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Query using a prepared statement, reading theResultSetwith aAsyncResultSetExtractor.AsyncCqlOperations.query(String cql, @Nullable 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 extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlOperations.query(String cql, @Nullable 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 extends @Nullable Object>
CompletableFuture<T> AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable 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, @Nullable 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 extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable 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 extends @Nullable Object>
CompletableFuture<T> AsyncCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) AsyncCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) <T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T extends @Nullable Object>
CompletableFuture<T> AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) <T extends @Nullable Object>
CompletableFuture<List<T>> AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T extends @Nullable Object>
TCqlOperations.query(String cql, @Nullable PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) Query using a prepared statement, reading theResultSetwith aResultSetExtractor.voidCqlOperations.query(String cql, @Nullable 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.CqlOperations.query(String cql, @Nullable 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 extends @Nullable Object>
TCqlOperations.query(PreparedStatementCreator preparedStatementCreator, @Nullable 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, @Nullable 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.CqlOperations.query(PreparedStatementCreator preparedStatementCreator, @Nullable 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 extends @Nullable Object>
TCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) voidCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) CqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T extends @Nullable Object>
TCqlTemplate.query(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, ResultSetExtractor<T> resultSetExtractor) voidCqlTemplate.query(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) CqlTemplate.query(PreparedStatementCreator preparedStatementCreator, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Flux<T> ReactiveCqlOperations.query(String cql, @Nullable PreparedStatementBinder psb, ReactiveResultSetExtractor<T> rse) Query using a prepared statement, reading theReactiveResultSetwith aReactiveResultSetExtractor.<T> Flux<T> ReactiveCqlOperations.query(String cql, @Nullable 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> Flux<T> ReactiveCqlOperations.query(ReactivePreparedStatementCreator psc, @Nullable 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> Flux<T> ReactiveCqlOperations.query(ReactivePreparedStatementCreator psc, @Nullable 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> Flux<T> ReactiveCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, ReactiveResultSetExtractor<T> rse) <T> Flux<T> ReactiveCqlTemplate.query(String cql, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Flux<T> ReactiveCqlTemplate.query(ReactivePreparedStatementCreator psc, @Nullable PreparedStatementBinder preparedStatementBinder, ReactiveResultSetExtractor<T> rse) Query using a prepared statement, reading theReactiveResultSetwith aReactiveResultSetExtractor.<T> Flux<T> ReactiveCqlTemplate.query(ReactivePreparedStatementCreator psc, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper) <T> Stream<T> CqlOperations.queryForStream(PreparedStatementCreator preparedStatementCreator, @Nullable 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, @Nullable PreparedStatementBinder psb, RowMapper<T> rowMapper)