|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Query in com.google.visualization.datasource |
|---|
| Methods in com.google.visualization.datasource that return Query | |
|---|---|
Query |
QueryPair.getCompletionQuery()
Returns the completion query. |
Query |
QueryPair.getDataSourceQuery()
Returns the data source query. |
Query |
DataSourceRequest.getQuery()
Returns the query. |
static Query |
DataSourceHelper.parseQuery(java.lang.String queryString)
Parses a query string (e.g., 'select A,B pivot B') and creates a Query object. |
| Methods in com.google.visualization.datasource with parameters of type Query | |
|---|---|
static DataTable |
DataSourceHelper.applyQuery(Query query,
DataTable dataTable,
com.ibm.icu.util.ULocale locale)
Applies the given Query on the given DataTable and returns the
resulting DataTable. |
DataTable |
DataTableGenerator.generateDataTable(Query query,
javax.servlet.http.HttpServletRequest request)
Generates the data table. |
static QueryPair |
DataSourceHelper.splitQuery(Query query,
Capabilities capabilities)
Splits the Query object into two queries according to the declared data source
capabilities: data source query and completion query. |
static QueryPair |
QuerySplitter.splitQuery(Query query,
Capabilities capabilities)
Split the query into a data source query and completion query. |
static void |
DataSourceHelper.validateQueryAgainstColumnStructure(Query query,
DataTable dataTable)
Checks that the query is valid against the structure of the data table. |
| Constructors in com.google.visualization.datasource with parameters of type Query | |
|---|---|
DataSourceRequest(Query query,
DataSourceParameters dsParams,
com.ibm.icu.util.ULocale userLocale)
Constructor. |
|
QueryPair(Query dataSourceQuery,
Query completionQuery)
Construct a new query pair. |
|
| Uses of Query in com.google.visualization.datasource.query |
|---|
| Methods in com.google.visualization.datasource.query with parameters of type Query | |
|---|---|
void |
Query.copyFrom(Query query)
Copies all information from the given query to this query. |
void |
Query.copyRowLimit(Query originalQuery)
Sets the max number of rows to return to the caller, based on another query. |
void |
Query.copyRowOffset(Query originalQuery)
Sets the number of rows to skip, based on another query. |
| Uses of Query in com.google.visualization.datasource.query.engine |
|---|
| Methods in com.google.visualization.datasource.query.engine with parameters of type Query | |
|---|---|
static DataTable |
QueryEngine.executeQuery(Query query,
DataTable table,
com.ibm.icu.util.ULocale locale)
Returns the data that is the result of executing the query. |
| Uses of Query in com.google.visualization.datasource.query.parser |
|---|
| Methods in com.google.visualization.datasource.query.parser that return Query | |
|---|---|
Query |
QueryBuilder.parseQuery(java.lang.String tqValue)
Parses a user query into a Query object. |
| Uses of Query in com.google.visualization.datasource.util |
|---|
| Methods in com.google.visualization.datasource.util with parameters of type Query | |
|---|---|
static DataTable |
SqlDataSourceHelper.executeQuery(Query query,
SqlDatabaseDescription databaseDescription)
Executes the given query on the given SQL database table, and returns the result as a DataTable. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||