Package | Description |
---|---|
com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
com.datastax.driver.dse.graph |
Modifier and Type | Method and Description |
---|---|
ResultSet |
Session.execute(Statement statement)
Executes the provided query.
|
ResultSet |
AbstractSession.execute(Statement statement)
Executes the provided query.
|
ResultSet |
Session.execute(String query)
Executes the provided query.
|
ResultSet |
AbstractSession.execute(String query)
Executes the provided query.
|
ResultSet |
Session.execute(String query,
Map<String,Object> values)
Executes the provided query using the provided named values.
|
ResultSet |
AbstractSession.execute(String query,
Map<String,Object> values)
Executes the provided query using the provided named values.
|
ResultSet |
Session.execute(String query,
Object... values)
Executes the provided query using the provided values.
|
ResultSet |
AbstractSession.execute(String query,
Object... values)
Executes the provided query using the provided values.
|
ResultSet |
ResultSetFuture.getUninterruptibly()
Waits for the query to return and return its result.
|
ResultSet |
ResultSetFuture.getUninterruptibly(long timeout,
TimeUnit unit)
Waits for the provided time for the query to return and return its
result if available.
|
Modifier and Type | Method and Description |
---|---|
com.google.common.util.concurrent.ListenableFuture<ResultSet> |
ResultSet.fetchMoreResults()
Force fetching the next page of results for this result set, if any.
|
Constructor and Description |
---|
GraphResultSet(ResultSet wrapped)
This constructor is intended for internal use only, users should normally obtain instances from
DseSession.executeGraph(GraphStatement) . |