| Package | Description | 
|---|---|
| com.datastax.driver.core.querybuilder | A CQL3 query builder. | 
| Modifier and Type | Method and Description | 
|---|---|
| Insert | Insert. defaultNull()Appends a  DEFAULT NULLclause to this {@code INSERT INTO ... | 
| Insert | Insert. defaultUnset()Appends a  DEFAULT UNSETclause to this {@code INSERT INTO ... | 
| Insert | Insert. ifNotExists()Sets the 'IF NOT EXISTS' option for this  INSERTstatement. | 
| static Insert | QueryBuilder. insertInto(String table)Starts building a new  INSERTquery. | 
| static Insert | QueryBuilder. insertInto(String keyspace,
          String table)Starts building a new  INSERTquery. | 
| static Insert | QueryBuilder. insertInto(TableMetadata table)Starts building a new  INSERTquery. | 
| Insert | Insert. json(Object json)Inserts the provided object, using the {@code INSERT INTO ... | 
| Insert | Insert. value(String name,
     Object value)Adds a column/value pair to the values inserted by this  INSERTstatement. | 
| Insert | Insert.Options. value(String name,
     Object value)Adds a column/value pair to the values inserted by this  INSERTstatement. | 
| Insert | Insert. values(List<String> names,
      List<Object> values)Adds multiple column/value pairs 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  INSERTstatement. | 
Copyright © 2012–2025. All rights reserved.