boolean |
Connection.close() |
Sends a query cancel request.
|
BigQueryDryRunResult |
Connection.dryRun(String sql) |
Execute a query dry run that returns information on the schema and query parameters of the
query results.
|
BigQueryResult |
Connection.executeSelect(String sql) |
Execute a SQL statement that returns a single ResultSet.
|
BigQueryResult |
Connection.executeSelect(String sql,
List<Parameter> parameters,
Map<String,String>... labels) |
This method executes a SQL SELECT query
|
com.google.common.util.concurrent.ListenableFuture<ExecuteSelectResponse> |
Connection.executeSelectAsync(String sql) |
Execute a SQL statement that returns a single ResultSet and returns a ListenableFuture to
process the response asynchronously.
|
com.google.common.util.concurrent.ListenableFuture<ExecuteSelectResponse> |
Connection.executeSelectAsync(String sql,
List<Parameter> parameters,
Map<String,String>... labels) |
Execute a SQL statement that returns a single ResultSet and returns a ListenableFuture to
process the response asynchronously.
|
List<Parameter> |
BigQueryDryRunResult.getQueryParameters() |
Returns query parameters for standard SQL queries by extracting undeclare query parameters from
the dry run job.
|
List<Parameter> |
BigQueryDryRunResultImpl.getQueryParameters() |
|
Schema |
BigQueryDryRunResult.getSchema() |
Returns the schema of the results.
|
Schema |
BigQueryDryRunResultImpl.getSchema() |
|
BigQueryResultStats |
BigQueryDryRunResult.getStatistics() |
Returns some processing statistics
|
BigQueryResultStats |
BigQueryDryRunResultImpl.getStatistics() |
|