Uses of Class
com.datastax.driver.core.querybuilder.Using

Packages that use Using
com.datastax.driver.core.querybuilder A CQL3 query builder. 
 

Uses of Using in com.datastax.driver.core.querybuilder
 

Methods in com.datastax.driver.core.querybuilder that return Using
static Using QueryBuilder.timestamp(BindMarker marker)
          Option to prepare the timestamp (in microseconds) for a modification query (insert, update or delete).
static Using QueryBuilder.timestamp(long timestamp)
          Option to set the timestamp for a modification query (insert, update or delete).
static Using QueryBuilder.ttl(BindMarker marker)
          Option to prepare the ttl (in seconds) for a modification query (insert, update or delete).
static Using QueryBuilder.ttl(int ttl)
          Option to set the ttl for a modification query (insert, update or delete).
 

Methods in com.datastax.driver.core.querybuilder with parameters of type Using
 Delete.Options Delete.Options.and(Using using)
          Adds the provided option.
 Update.Options Update.Options.and(Using using)
          Adds the provided option.
 Insert.Options Insert.Options.and(Using using)
          Adds the provided option.
 Batch.Options Batch.Options.and(Using using)
          Adds the provided option.
 Delete.Options Delete.using(Using using)
          Adds a new options for this DELETE statement.
 Delete.Options Delete.Where.using(Using using)
          Adds an option to the DELETE statement this WHERE clause is part of.
 Update.Options Update.using(Using using)
          Adds a new options for this UPDATE statement.
 Update.Options Update.Assignments.using(Using using)
          Adds an option to the UPDATE statement those assignments are part of.
 Update.Options Update.Where.using(Using using)
          Adds an option to the UPDATE statement this WHERE clause is part of.
 Update.Options Update.Conditions.using(Using using)
          Adds an option to the UPDATE statement these conditions are part of.
 Insert.Options Insert.using(Using using)
          Adds a new options for this INSERT statement.
 Batch.Options Batch.using(Using using)
          Adds a new options for this BATCH statement.
 



Copyright © 2013. All rights reserved.