| Package | Description | 
|---|---|
| com.datastax.driver.core.querybuilder | 
 A CQL3 query builder. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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 © 2014. All Rights Reserved.