Package | Description |
---|---|
com.datastax.oss.driver.api.querybuilder | |
com.datastax.oss.driver.api.querybuilder.update |
Modifier and Type | Method and Description |
---|---|
static UpdateStart |
QueryBuilder.update(CqlIdentifier table)
Starts an UPDATE query for an unqualified table.
|
static UpdateStart |
QueryBuilder.update(CqlIdentifier keyspace,
CqlIdentifier table)
Starts an UPDATE query for a qualified table.
|
static UpdateStart |
QueryBuilder.update(String table)
Shortcut for
update(CqlIdentifier.fromCql(table)) |
static UpdateStart |
QueryBuilder.update(String keyspace,
String table)
|
Modifier and Type | Method and Description |
---|---|
UpdateStart |
UpdateStart.usingTimestamp(BindMarker bindMarker)
Adds a USING TIMESTAMP clause to this statement with a bind marker.
|
UpdateStart |
UpdateStart.usingTimestamp(long timestamp)
Adds a USING TIMESTAMP clause to this statement with a literal value.
|
UpdateStart |
UpdateStart.usingTtl(BindMarker bindMarker)
Adds a
USING TTL clause to this statement with a bind marker. |
UpdateStart |
UpdateStart.usingTtl(int ttlInSeconds)
Adds a
USING TTL clause to this statement with a literal value. |
Copyright © 2017–2022. All rights reserved.