/* -*- 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 sdbc { published interface XResultSet; published interface XConnection; /** provides comprehensive information about the database as a whole.
Many of the methods here return lists of information in the form of com::sun::star::sdbc::XResultSet objects. You can use the normal com::sun::star::sdbc::XRow (or com::sun::star::sdb::XColumn) methods such as com::sun::star::sdbc::XRow::getString() and com::sun::star::sdbc::XRow::getInt() to retrieve the data from these XResultSets. If a given form of metadata is not available, these methods should throw a com::sun::star::sdbc::SQLException. After calling one of the getXXX() methods, one can check whether that value is `NULL` with the method com::sun::star::sdbc::XRow::wasNull(). In the text only "(may be `NULL`)" is mentioned for this case.
Some of these methods take arguments that are String patterns. These arguments all have names such as fooPattern. Within a pattern String, "%" means match any substring of 0 or more characters, and "_" means match any one character. Only metadata entries matching the search pattern are returned. If a search pattern argument is set to `VOID`, that argument's criteria will be dropped from the search.
A com::sun::star::sdbc::SQLException will be thrown if a driver does not support a metadata method. In the case of methods that return an XResultSet, either an XResultSet (which may be empty) is returned or a SQLException is thrown.
*/ published interface XDatabaseMetaData: com::sun::star::uno::XInterface { /** Can all the procedures returned by getProcedures be called by the current user? @return `TRUE` if the user is allowed to call all procedures returned by getProcedures otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean allProceduresAreCallable() raises (SQLException); /** Can all the tables returned by getTable be SELECTed by the current user? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean allTablesAreSelectable() raises (SQLException); /** returns the URL for the database connection */ string getURL() raises (SQLException); /** returns the user name from this database connection. */ string getUserName() raises (SQLException); /** checks if the database in read-only mode. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean isReadOnly() raises (SQLException); /** Are NULL values sorted high? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean nullsAreSortedHigh() raises (SQLException); /** Are NULL values sorted low? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean nullsAreSortedLow() raises (SQLException); /** Are NULL values sorted at the start regardless of sort order? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean nullsAreSortedAtStart() raises (SQLException); /** Are NULL values sorted at the end, regardless of sort order? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean nullsAreSortedAtEnd() raises (SQLException); /** returns the name of the database product. */ string getDatabaseProductName() raises (SQLException); /** returns the version of the database product. */ string getDatabaseProductVersion() raises (SQLException); /** returns the name of the SDBC driver. */ string getDriverName() raises (SQLException); /** returns the version number of the SDBC driver. */ string getDriverVersion() raises (SQLException); /** returns the SDBC driver major version number. */ long getDriverMajorVersion(); /** returns the SDBC driver minor version number. */ long getDriverMinorVersion(); /** use the database local files to save the tables. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean usesLocalFiles() raises (SQLException); /** use the database one local file to save for each table. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean usesLocalFilePerTable() raises (SQLException); /** use the database "mixed case unquoted SQL identifiers" case sensitive. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsMixedCaseIdentifiers() raises (SQLException); /** Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in upper case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean storesUpperCaseIdentifiers() raises (SQLException); /** Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in lower case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean storesLowerCaseIdentifiers() raises (SQLException); /** Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in mixed case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean storesMixedCaseIdentifiers() raises (SQLException); /** Does the database treat mixed case quoted SQL identifiers as case sensitive and as a result store them in mixed case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsMixedCaseQuotedIdentifiers() raises (SQLException); /** Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in upper case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean storesUpperCaseQuotedIdentifiers() raises (SQLException); /** Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in lower case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean storesLowerCaseQuotedIdentifiers() raises (SQLException); /** Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in mixed case? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean storesMixedCaseQuotedIdentifiers() raises (SQLException); /** What's the string used to quote SQL identifiers? This returns a space " " if identifier quoting is not supported. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getIdentifierQuoteString() raises (SQLException); /** gets a comma-separated list of all a database's SQL keywords that are NOT also SQL92 keywords. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getSQLKeywords() raises (SQLException); /** gets a comma-separated list of math functions. These are the X/Open CLI math function names used in the SDBC function escape clause. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getNumericFunctions() raises (SQLException); /** gets a comma-separated list of string functions. These are the X/Open CLI string function names used in the SDBC function escape clause. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getStringFunctions() raises (SQLException); /** gets a comma-separated list of system functions. These are the X/Open CLI system function names used in the SDBC function escape clause. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getSystemFunctions() raises (SQLException); /** gets a comma-separated list of time and date functions. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getTimeDateFunctions() raises (SQLException); /** gets the string that can be used to escape wildcard characters. This is the string that can be used to escape "_" or "%" in the string pattern style catalog search parameters.The "_" character represents any single character.
The "%" character represents any sequence of zero or more characters.
@returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getSearchStringEscape() raises (SQLException); /** gets all the "extra" characters that can be used in unquoted identifier names (those beyond a-z, A-Z, 0-9 and _). @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getExtraNameCharacters() raises (SQLException); /** support the Database "ALTER TABLE" with add column? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsAlterTableWithAddColumn() raises (SQLException); /** support the Database "ALTER TABLE" with drop column? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsAlterTableWithDropColumn() raises (SQLException); /** support the Database column aliasing?The SQL AS clause can be used to provide names for computed columns or to provide alias names for columns as required.
@returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsColumnAliasing() raises (SQLException); /** are concatenations between NULL and non-NULL values NULL? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean nullPlusNonNullIsNull() raises (SQLException); /** `TRUE` , if the Database supports the CONVERT function between SQL types, otherwise `FALSE`. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsTypeConversion() raises (SQLException); /** `TRUE` , if the Database supports the CONVERT between the given SQL types otherwise `FALSE`. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsConvert([in]long fromType, [in]long toType) raises (SQLException); /** Are table correlation names supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsTableCorrelationNames() raises (SQLException); /** If table correlation names are supported, are they restricted to be different from the names of the tables? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsDifferentTableCorrelationNames() raises (SQLException); /** Are expressions in "ORDER BY" lists supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsExpressionsInOrderBy() raises (SQLException); /** Can an "ORDER BY" clause use columns not in the SELECT statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsOrderByUnrelated() raises (SQLException); /** Is some form of "GROUP BY" clause supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsGroupBy() raises (SQLException); /** Can a "GROUP BY" clause use columns not in the SELECT? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsGroupByUnrelated() raises (SQLException); /** Can a "GROUP BY" clause add columns not in the SELECT provided it specifies all the columns in the SELECT? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsGroupByBeyondSelect() raises (SQLException); /** Is the escape character in "LIKE" clauses supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsLikeEscapeClause() raises (SQLException); /** Are multiple XResultSets from a single execute supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsMultipleResultSets() raises (SQLException); /** Can we have multiple transactions open at once (on different connections)? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsMultipleTransactions() raises (SQLException); /** Can columns be defined as non-nullable? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsNonNullableColumns() raises (SQLException); /** `TRUE`, if the database supports ODBC Minimum SQL grammar, otherwise `FALSE`. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsMinimumSQLGrammar() raises (SQLException); /** `TRUE`, if the database supports ODBC Core SQL grammar, otherwise `FALSE`. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCoreSQLGrammar() raises (SQLException); /** `TRUE`, if the database supports ODBC Extended SQL grammar, otherwise `FALSE`. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsExtendedSQLGrammar() raises (SQLException); /** @returns `TRUE`, if the database supports ANSI92 entry level SQL grammar, otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean supportsANSI92EntryLevelSQL() raises (SQLException); /** @returns `TRUE`, if the database supports ANSI92 intermediate SQL grammar, otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean supportsANSI92IntermediateSQL() raises (SQLException); /** @returns `TRUE`, if the database supports ANSI92 full SQL grammar, otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean supportsANSI92FullSQL() raises (SQLException); /** returns `TRUE`, if the Database supports SQL Integrity Enhancement Facility, otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean supportsIntegrityEnhancementFacility() raises (SQLException); /** @returns `TRUE`, if some form of outer join is supported, otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean supportsOuterJoins() raises (SQLException); /** @returns `TRUE`, if full nested outer joins are supported, otherwise `FALSE`. @throws SQLException if a database access error occurs. */ boolean supportsFullOuterJoins() raises (SQLException); /** @returns `TRUE`, if there is limited support for outer joins. (This will be `TRUE` if supportFullOuterJoins is `TRUE`.) `FALSE` is returned otherwise. @throws SQLException if a database access error occurs. */ boolean supportsLimitedOuterJoins() raises (SQLException); /** return the database vendor's preferred term for "schema" @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getSchemaTerm() raises (SQLException); /** return the database vendor's preferred term for "procedure" @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getProcedureTerm() raises (SQLException); /** return the database vendor's preferred term for "catalog" @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getCatalogTerm() raises (SQLException); /** Does a catalog appear at the start of a qualified table name? (Otherwise it appears at the end) @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean isCatalogAtStart() raises (SQLException); /** return the separator between catalog and table name @returns `TRUE` if so @throws SQLException if a database access error occurs. */ string getCatalogSeparator() raises (SQLException); /** Can a schema name be used in a data manipulation statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSchemasInDataManipulation() raises (SQLException); /** Can a schema name be used in a procedure call statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSchemasInProcedureCalls() raises (SQLException); /** Can a schema name be used in a table definition statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSchemasInTableDefinitions() raises (SQLException); /** Can a schema name be used in an index definition statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSchemasInIndexDefinitions() raises (SQLException); /** Can a schema name be used in a privilege definition statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSchemasInPrivilegeDefinitions() raises (SQLException); /** Can a catalog name be used in a data manipulation statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCatalogsInDataManipulation() raises (SQLException); /** Can a catalog name be used in a procedure call statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCatalogsInProcedureCalls() raises (SQLException); /** Can a catalog name be used in a table definition statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCatalogsInTableDefinitions() raises (SQLException); /** Can a catalog name be used in an index definition statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCatalogsInIndexDefinitions() raises (SQLException); /** Can a catalog name be used in a privilege definition statement? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCatalogsInPrivilegeDefinitions() raises (SQLException); /** Is positioned DELETE supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsPositionedDelete() raises (SQLException); /** Is positioned UPDATE supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsPositionedUpdate() raises (SQLException); /** Is SELECT for UPDATE supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSelectForUpdate() raises (SQLException); /** Are stored procedure calls using the stored procedure escape syntax supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsStoredProcedures() raises (SQLException); /** Are subqueries in comparison expressions supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSubqueriesInComparisons() raises (SQLException); /** Are subqueries in "exists" expressions supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSubqueriesInExists() raises (SQLException); /** Are subqueries in "in" statements supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSubqueriesInIns() raises (SQLException); /** Are subqueries in quantified expressions supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsSubqueriesInQuantifieds() raises (SQLException); /** Are correlated subqueries supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsCorrelatedSubqueries() raises (SQLException); /** Is SQL UNION supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsUnion() raises (SQLException); /** Is SQL UNION ALL supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsUnionAll() raises (SQLException); /** Can cursors remain open across commits? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsOpenCursorsAcrossCommit() raises (SQLException); /** Can cursors remain open across rollbacks? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsOpenCursorsAcrossRollback() raises (SQLException); /** Can statements remain open across commits? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsOpenStatementsAcrossCommit() raises (SQLException); /** Can statements remain open across rollbacks? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsOpenStatementsAcrossRollback() raises (SQLException); /** return the maximal number of hex characters in an inline binary literal @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxBinaryLiteralLength() raises (SQLException); /** return the max length for a character literal @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxCharLiteralLength() raises (SQLException); /** return the limit on column name length @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxColumnNameLength() raises (SQLException); /** return the maximum number of columns in a "GROUP BY" clause @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxColumnsInGroupBy() raises (SQLException); /** return the maximum number of columns allowed in an index @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxColumnsInIndex() raises (SQLException); /** return the maximum number of columns in an "ORDER BY" clause @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxColumnsInOrderBy() raises (SQLException); /** return the maximum number of columns in a "SELECT" list @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxColumnsInSelect() raises (SQLException); /** return the maximum number of columns in a table @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxColumnsInTable() raises (SQLException); /** return the number of active connections at a time to this database. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxConnections() raises (SQLException); /** return the maximum cursor name length @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxCursorNameLength() raises (SQLException); /** return the maximum length of an index (in bytes) @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxIndexLength() raises (SQLException); /** return the maximum length allowed for a schema name @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxSchemaNameLength() raises (SQLException); /** return the maximum length of a procedure name @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxProcedureNameLength() raises (SQLException); /** return the maximum length of a catalog name @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxCatalogNameLength() raises (SQLException); /** return the maximum length of a single row. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxRowSize() raises (SQLException); /** Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY blobs? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean doesMaxRowSizeIncludeBlobs() raises (SQLException); /** return the maximum length of a SQL statement @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxStatementLength() raises (SQLException); /** return the maximal number of open active statements at one time to this database @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxStatements() raises (SQLException); /** return the maximum length of a table name @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxTableNameLength() raises (SQLException); /** return the maximum number of tables in a SELECT statement @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxTablesInSelect() raises (SQLException); /** return the maximum length of a user name @returns `TRUE` if so @throws SQLException if a database access error occurs. */ long getMaxUserNameLength() raises (SQLException); /** return the database default transaction isolation level. The values are defined in com::sun::star::sdbc::TransactionIsolation. @returns `TRUE` if so @throws SQLException if a database access error occurs. @see com::sun::star::sdbc::XConnection */ long getDefaultTransactionIsolation() raises (SQLException); /** support the Database transactions? If not, invoking the method com::sun::star::sdbc::XConnection::commit() is a noop and the isolation level is TransactionIsolation_NONE. @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsTransactions() raises (SQLException); /** Does this database support the given transaction isolation level? @returns `TRUE` if so @throws SQLException if a database access error occurs. @see com::sun::star::sdbc::Connection */ boolean supportsTransactionIsolationLevel([in]long level) raises (SQLException); /** support the Database both data definition and data manipulation statements within a transaction? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsDataDefinitionAndDataManipulationTransactions() raises (SQLException); /** are only data manipulation statements within a transaction supported? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean supportsDataManipulationTransactionsOnly() raises (SQLException); /** does a data definition statement within a transaction force the transaction to commit? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean dataDefinitionCausesTransactionCommit() raises (SQLException); /** is a data definition statement within a transaction ignored? @returns `TRUE` if so @throws SQLException if a database access error occurs. */ boolean dataDefinitionIgnoredInTransactions() raises (SQLException); /** Gets a description of the stored procedures available in a catalog.Only procedure descriptions matching the schema and procedure name criteria are returned. They are ordered by PROCEDURE_SCHEM, and PROCEDURE_NAME.
Each procedure description has the following columns:
Only descriptions matching the schema, procedure and parameter name criteria are returned. They are ordered by PROCEDURE_SCHEM and PROCEDURE_NAME. Within this, the return value, if any, is first. Next are the parameter descriptions in call order. The column descriptions follow in column number order.
Each row in the XResultSet is a parameter description or column description with the following fields:
Note: Some databases may not return the column descriptions for a procedure. Additional columns beyond REMARKS can be defined by the database.
@param catalog a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria @param schemaPattern a schema name pattern; "" retrieves those without a schema @param procedureNamePattern a procedure name pattern @param columnNamePattern a column name pattern @returns each row describes a stored procedure parameter or column @throws SQLException if a database access error occurs. */ XResultSet getProcedureColumns([in]any catalog, [in]string schemaPattern, [in]string procedureNamePattern, [in]string columnNamePattern) raises (SQLException); /** gets a description of tables available in a catalog.Only table descriptions matching the catalog, schema, table name, and type criteria are returned. They are ordered by TABLE_TYPE, TABLE_SCHEM, and TABLE_NAME.
Each table description has the following columns:
Note: Some databases may not return information for all tables.
@param catalog a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria @param schemaPattern a schema name pattern; "" retrieves those without a schema @param tableNamePattern a table name pattern @param types a list of table types to include @returns each row is a table description @throws SQLException if a database access error occurs. */ XResultSet getTables([in]any catalog, [in]string schemaPattern, [in]string tableNamePattern, [in]sequenceThe schema column is:
The catalog column is:
The table type is:
Only column descriptions matching the catalog, schema, table and column name criteria are returned. They are ordered by TABLE_SCHEM, TABLE_NAME, and ORDINAL_POSITION.
Each column description has the following columns:
Only privileges matching the column name criteria are returned. They are ordered by COLUMN_NAME and PRIVILEGE.
Each privilege description has the following columns:
Only privileges matching the schema and table name criteria are returned. They are ordered by TABLE_SCHEM, TABLE_NAME, and PRIVILEGE.
Each privilege description has the following columns:
Each column description has the following columns:
Each column description has the following columns:
Each primary key column description has the following columns:
Each primary key column description has the following columns:
Each foreign key column description has the following columns:
Each foreign key column description has the following columns:
Each type description has the following columns:
Each index column description has the following columns:
XResultSet.rowUpdated
.
@param setType
defined in
com::sun::star::sdbc::ResultSetType
@returns
`TRUE` if so
@throws SQLException
if a database access error occurs.
*/
boolean updatesAreDetected([in]long setType) raises (SQLException);
/** indicates whether or not a visible row delete can be detected by
calling com::sun::star::sdbc::XResultSet::rowDeleted().
If deletesAreDetected()
returns `FALSE`, then deleted rows are removed from the result set.
@param setType
defined in
com::sun::star::sdbc::ResultSetType
@returns
`TRUE` if so
@throws SQLException
if a database access error occurs.
*/
boolean deletesAreDetected([in]long setType) raises (SQLException);
/** indicates whether or not a visible row insert can be detected
by calling
com::sun::star::sdbc::XResultSet::rowInserted().()
@param setType
defined in
com::sun::star::sdbc::ResultSetType
@returns
`TRUE` if so
@throws SQLException
if a database access error occurs.
*/
boolean insertsAreDetected([in]long setType) raises (SQLException);
/** indicates whether the driver supports batch updates.
@returns
`TRUE` if so
@throws SQLException
if a database access error occurs.
*/
boolean supportsBatchUpdates() raises (SQLException);
/** Gets a description of the user-defined types defined in a particular
schema. Schema-specific UDTs may have type OBJECT, STRUCT,
or DISTINCT.
Only types matching the catalog, schema, type name, and type criteria are returned. They are ordered by DATA_TYPE, TYPE_SCHEM, and TYPE_NAME. The type name parameter may be a fully-qualified name. In this case, the catalog and schemaPattern parameters are ignored.
Each type description has the following columns:
Note: If the driver does not support UDTs, an empty result set is returned.
@param catalog a catalog name; "" retrieves those without a catalog; `VOID` means drop catalog name from the selection criteria @param schemaPattern a schema name pattern; "" retrieves those without a schema @param typeNamePattern a type name pattern; may be a fully-qualified name @param types a list of user-named types to include (OBJECT, STRUCT, or DISTINCT) @returns each row is a type description @throws SQLException if a database access error occurs. */ XResultSet getUDTs([in]any catalog, [in]string schemaPattern, [in]string typeNamePattern, [in]sequence