| Package | Description | 
|---|---|
| com.datastax.driver.core.querybuilder | A CQL3 query builder. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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). | 
| Modifier and Type | Method and Description | 
|---|---|
| Update.Options | Update.Options. and(Using using)Adds the provided option. | 
| Insert.Options | Insert.Options. and(Using using)Adds the provided option. | 
| Delete.Options | Delete.Options. and(Using using)Adds the provided option. | 
| Batch.Options | Batch.Options. and(Using using)Adds the provided option. | 
| 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. | 
| 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. | 
| Delete.Options | Delete.Conditions. using(Using using)Adds an option to the DELETE statement these conditions are part of. | 
| Batch.Options | Batch. using(Using using)Adds a new options for this BATCH statement. |