/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ module com { module sun { module star { module container { published interface XIndexAccess; };};};}; module com { module sun { module star { module sdb { /** simplifies the analyzing of single select statements.
The interface can be used for analyzing single SELECT statements without knowing the structure of the used query.
*/ interface XSingleSelectQueryAnalyzer : com::sun::star::uno::XInterface { /** returns the query. @returns the query */ string getQuery(); /** sets a new query for the composer, which may be expanded by filters, group by, having and sort criteria. @param command the single select statement to set @throws com::sun::star::sdbc::SQLException if a database access error occurs or the statement isn't a single select statement or the statement isn't valid or the statement can not be parsed. */ void setQuery([in] string command ) raises (com::sun::star::sdbc::SQLException); // FILTER /** returns the used filter.The filter criteria returned is part of the where condition of the select command, but it does not contain the where token.
@returns the filter */ string getFilter(); /** returns the currently used filter.The filter criteria is split into levels. Each level represents the OR criteria. Within each level, the filters are provided as an AND criteria with the name of the column and the filter condition. The filter condition is of type string. The operator used, is defined by com::sun::star::sdb::SQLFilterOperator.
@returns the structured filter */ sequence< sequenceThe group criteria returned is part of the GROUP BY clause of the select command, but it does not contain the GROUP BY keyword .
@returns the group */ string getGroup(); /** returns the currently used group.The columns returned from the GROUP BY clause.
@returns a collection of com::sun::star::sdb::GroupColumn which form the GROUP BY. */ com::sun::star::container::XIndexAccess getGroupColumns(); // HAVING /** returns the used HAVING filter.The HAVING filter criteria returned is part of the HAVING condition of the select command, but it does not contain the HAVING token.
@returns the filter */ string getHavingClause(); /** returns the currently used HAVING filter.The HAVING filter criteria is split into levels. Each level represents the OR criteria. Within each level, the filters are provided as an AND criteria with the name of the column and the filter condition. The filter condition is of type string. The operator used, is defined by com::sun::star::sdb::SQLFilterOperator.
@returns the structured HAVING filter */ sequence< sequenceThe order criteria returned is part of the ORDER BY clause of the select command, but it does not contain the ORDER BY keyword .
@returns the order */ string getOrder(); /** returns the currently used sort order.The order criteria returned is part of the ORDER BY clause of the select command, but it does not contain the ORDER BY keyword .
@returns a collection of com::sun::star::sdb::OrderColumn which form the ORDER BY. */ com::sun::star::container::XIndexAccess getOrderColumns(); /** returns the query previously set at the analyzer, with all application-level features being substituted by their database-level counterparts.The XSingleSelectQueryAnalyzer is an application-level component,
which in some respect understands SQL features usually not present at the database
level. As a prominent example, you might pass a SELECT
statement to the analyzer
which is based on another query.
While all other methods will handle those additional features transparently - e.g.
the query in the FROM
part of a SELECT
statement will be handled
as if it really is a table -, getQueryWithSubstitution
gives you the SQL statement
where all those features have been stripped, and replaced with appropriate standard SQL.
For example, consider a database document which contains a client-side query named All Orders
.
This query is not known to the underlying database, so an SQL statement like
SELECT * from "All Orders"
would be rejected by the database. However, instantiating
a SingleSelectQueryAnalyzer at the Connection object, and passing it the above query,
you can then use getQueryWithSubstitution
to retrieve a statement where "All Orders"
has been replaced with the SELECT
statement which actually constitutes the "All Orders"
query.
foo
, which is defined as SELECT * FROM "bar"
.
Now assume that bar
is a query defined as SELECT * FROM "foo"
. Passing either
of those statements to an analyzer, and calling getQueryWithSubstitution(), would result
in an exception being thrown, since it's impossible to substitute the sub queries with their
constituting statements.
@see Connection
@see XQueriesSupplier
@see DatabaseDocument
@since OOo 2.0.4
*/
string getQueryWithSubstitution()
raises (com::sun::star::sdbc::SQLException);
/** sets a new query for the composer, which may be expanded by filters, group by, having
and sort criteria.
@param Command
is the command which should be executed, the type of command depends
on the CommandType.
In case of a \p CommandType of com::sun::star::sdb::CommandType::COMMAND,
means in case the \p Command specifies an SQL statement, the inherited
com::sun::star::sdbc::RowSet::EscapeProcessing
becomes relevant:
It then can be to used to specify whether the SQL statement should be analyzed on the
client side before sending it to the database server.
The default value for com::sun::star::sdbc::RowSet::EscapeProcessing
is `TRUE`. By switching it to `FALSE`, you can pass backend-specific SQL statements,
which are not standard SQL, to your database.