represents a tool for composing SQL select statements. More...
import "SQLQueryComposer.idl";
 
  
| Exported Interfaces | |
| interface | XSQLQueryComposer | 
| access to the composer interface. | |
| interface | com::sun::star::sdbcx::XTablesSupplier | 
| access to the selected tables. | |
| interface | com::sun::star::sdbcx::XColumnsSupplier | 
| access the selected columns. | |
| Additional Inherited Members | |
|  Public Member Functions inherited from XSQLQueryComposer | |
| string | getQuery () | 
| returns the query used for composing. | |
| void | setQuery ([in] string command) raises (com::sun::star::sdbc::SQLException) | 
| sets a new query for the composer, which may be expanded by filters and sort criteria. | |
| string | getComposedQuery () | 
| returns the query composed with filters and sort criteria. | |
| string | getFilter () | 
| returns the currently used filter. | |
| sequence< sequence< com::sun::star::beans::PropertyValue > > | getStructuredFilter () | 
| returns the currently used filter. | |
| string | getOrder () | 
| returns the currently used sort order. | |
| void | appendFilterByColumn ([in] com::sun::star::beans::XPropertySet column) raises (com::sun::star::sdbc::SQLException) | 
| appends a new filter condition by a com::sun::star::sdb::DataColumn providing the name and the value for the filter. | |
| void | appendOrderByColumn ([in] com::sun::star::beans::XPropertySet column, [in] boolean ascending) raises (com::sun::star::sdbc::SQLException) | 
| appends an additional part to the sort order criteria of the select statement. | |
| void | setFilter ([in] string filter) raises (com::sun::star::sdbc::SQLException) | 
| makes it possible to set a filter condition for the query. | |
| void | setOrder ([in] string order) raises (com::sun::star::sdbc::SQLException) | 
| makes it possible to set a sort condition for the query. | |
|  Public Member Functions inherited from XInterface | |
| any | queryInterface ([in] type aType) | 
| queries for a new interface to an existing UNO object. | |
| void | acquire () | 
| increases the reference counter by one. | |
| void | release () | 
| decreases the reference counter by one. | |
|  Public Member Functions inherited from XTablesSupplier | |
| com::sun::star::container::XNameAccess | getTables () | 
| returns the container of tables. | |
|  Public Member Functions inherited from XColumnsSupplier | |
| com::sun::star::container::XNameAccess | getColumns () | 
| returns the container of columns. | |
represents a tool for composing SQL select statements.
It hides the complexity of parsing and evaluating SQL Statements and provides sophisticated methods for expanding a SQL-Statement with filter and order criteria.
| interface com::sun::star::sdbcx::XColumnsSupplier | 
access the selected columns.
| interface com::sun::star::sdbcx::XTablesSupplier | 
access to the selected tables.
| interface XSQLQueryComposer | 
access to the composer interface.