Uses of Interface
com.datastax.driver.core.PreparedStatement

Packages that use PreparedStatement
com.datastax.driver.core The main package for the DataStax Java driver for Cassandra. 
 

Uses of PreparedStatement in com.datastax.driver.core
 

Classes in com.datastax.driver.core that implement PreparedStatement
 class DefaultPreparedStatement
           
 

Methods in com.datastax.driver.core that return PreparedStatement
 PreparedStatement PreparedStatement.disableTracing()
          Convenience method to disable tracing for all bound statements created from this prepared statement.
 PreparedStatement DefaultPreparedStatement.disableTracing()
           
 PreparedStatement PreparedStatement.enableTracing()
          Convenience method to enables tracing for all bound statements created from this prepared statement.
 PreparedStatement DefaultPreparedStatement.enableTracing()
           
 PreparedStatement Session.prepare(RegularStatement statement)
          Prepares the provided query.
 PreparedStatement Session.prepare(String query)
          Prepares the provided query string.
 PreparedStatement BoundStatement.preparedStatement()
          Returns the prepared statement on which this BoundStatement is based.
 PreparedStatement PreparedStatement.setConsistencyLevel(ConsistencyLevel consistency)
          Sets a default consistency level for all bound statements created from this prepared statement.
 PreparedStatement DefaultPreparedStatement.setConsistencyLevel(ConsistencyLevel consistency)
           
 PreparedStatement PreparedStatement.setRetryPolicy(RetryPolicy policy)
          Convenience method to set a default retry policy for the BoundStatement created from this prepared statement.
 PreparedStatement DefaultPreparedStatement.setRetryPolicy(RetryPolicy policy)
           
 PreparedStatement PreparedStatement.setRoutingKey(ByteBuffer... routingKeyComponents)
          Sets the routing key for this query.
 PreparedStatement DefaultPreparedStatement.setRoutingKey(ByteBuffer... routingKeyComponents)
           
 PreparedStatement PreparedStatement.setRoutingKey(ByteBuffer routingKey)
          Sets the routing key for this prepared statement.
 PreparedStatement DefaultPreparedStatement.setRoutingKey(ByteBuffer routingKey)
           
 

Methods in com.datastax.driver.core that return types with arguments of type PreparedStatement
 com.google.common.util.concurrent.ListenableFuture<PreparedStatement> Session.prepareAsync(RegularStatement statement)
          Prepares the provided query asynchronously.
 com.google.common.util.concurrent.ListenableFuture<PreparedStatement> Session.prepareAsync(String query)
          Prepares the provided query string asynchronously.
 

Constructors in com.datastax.driver.core with parameters of type PreparedStatement
BoundStatement(PreparedStatement statement)
          Creates a new BoundStatement from the provided prepared statement.
 



Copyright © 2014. All rights reserved.