| Package | Description |
|---|---|
| com.datastax.driver.core |
The main package for the DataStax Java driver for Cassandra.
|
| com.datastax.driver.mapping |
| 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,
Object... values)
Executes the provided query using the provided value.
|
ResultSet |
AbstractSession.execute(String query,
Object... values)
Executes the provided query using the provided value.
|
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 |
|---|---|
Result<T> |
Mapper.map(ResultSet resultSet)
Creates a query to fetch entity given its PRIMARY KEY.
|
Result<T> |
Mapper.mapAliased(ResultSet resultSet)
Deprecated.
you no longer need to specify whether a result set is aliased, it will be detected automatically. Use
Mapper.map(ResultSet) instead of this method. |