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

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

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

Methods in com.datastax.driver.core.querybuilder that return Insert
 Insert Insert.ifNotExists()
          Sets the 'IF NOT EXISTS' option for this INSERT statement.
static Insert QueryBuilder.insertInto(String table)
          Start building a new INSERT query.
static Insert QueryBuilder.insertInto(String keyspace, String table)
          Start building a new INSERT query.
static Insert QueryBuilder.insertInto(TableMetadata table)
          Start building a new INSERT query.
 Insert Insert.value(String name, Object value)
          Adds a column/value pair to the values inserted by this INSERT statement.
 Insert Insert.Options.value(String name, Object value)
          Adds a column/value pair to the values inserted by this INSERT statement.
 Insert Insert.values(String[] names, Object[] values)
          Adds multiple column/value pairs to the values inserted by this INSERT statement.
 Insert Insert.Options.values(String[] names, Object[] values)
          Adds multiple column/value pairs to the values inserted by this INSERT statement.
 



Copyright © 2013. All rights reserved.