Package | Description |
---|---|
com.datastax.driver.core.querybuilder |
A CQL3 query builder.
|
Modifier and Type | Method and Description |
---|---|
Select |
Select.allowFiltering()
Adds an
ALLOW FILTERING directive to this statement. |
Select |
Select.Where.allowFiltering()
Adds an
ALLOW FILTERING directive to the SELECT statement this WHERE
clause is part of. |
Select |
Select.Builder.from(String table)
Adds the table to select from.
|
Select |
Select.Builder.from(String keyspace,
String table)
Adds the table to select from.
|
Select |
Select.SelectionOrAlias.from(String keyspace,
String table) |
Select |
Select.Builder.from(TableMetadata table)
Adds the table to select from.
|
Select |
Select.SelectionOrAlias.from(TableMetadata table) |
Select |
Select.groupBy(Object... columns)
Adds a
GROUP BY clause to this statement. |
Select |
Select.Where.groupBy(Object... columns)
Adds a
GROUP BY clause to this statement. |
Select |
Select.limit(BindMarker marker)
Adds a prepared
LIMIT clause to this statement. |
Select |
Select.Where.limit(BindMarker limit)
Adds a bind marker for the
LIMIT clause to the SELECT statement this WHERE clause is part of. |
Select |
Select.limit(int limit)
Adds a
LIMIT clause to this statement. |
Select |
Select.Where.limit(int limit)
Adds a
LIMIT clause to the SELECT statement this WHERE clause is part
of. |
Select |
Select.orderBy(Ordering... orderings)
Adds an
ORDER BY clause to this statement. |
Select |
Select.Where.orderBy(Ordering... orderings)
Adds an ORDER BY clause to the
SELECT statement this WHERE clause if part of. |
Select |
Select.perPartitionLimit(BindMarker marker)
Adds a prepared
PER PARTITION LIMIT clause to this statement. |
Select |
Select.Where.perPartitionLimit(BindMarker limit)
Adds a bind marker for the
PER PARTITION LIMIT clause to the SELECT statement
this WHERE clause is part of. |
Select |
Select.perPartitionLimit(int perPartitionLimit)
Adds a
PER PARTITION LIMIT clause to this statement. |
Select |
Select.Where.perPartitionLimit(int perPartitionLimit)
Adds a
PER PARTITION LIMIT clause to the SELECT statement this WHERE
clause is part of. |
Copyright © 2012–2018. All rights reserved.