- /*
- * @(#)DatabaseMetaData.java 1.21 01/11/29
- *
- * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
- * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
- */
- package java.sql;
- /**
- * Comprehensive information about the database as a whole.
- *
- * <P>Many of the methods here return lists of information in
- * the form of <code>ResultSet</code> objects.
- * You can use the normal ResultSet methods such as getString and getInt
- * to retrieve the data from these ResultSets. If a given form of
- * metadata is not available, these methods should throw an SQLException.
- *
- * <P>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 a null ref,
- * that argument's criteria will be dropped from the search.
- *
- * <P>An <code>SQLException</code> will be thrown if a driver does not support a meta
- * data method. In the case of methods that return a ResultSet,
- * either a ResultSet (which may be empty) is returned or a
- * SQLException is thrown.
- */
- public interface DatabaseMetaData {
- //----------------------------------------------------------------------
- // First, a variety of minor information about the target database.
- /**
- * Can all the procedures returned by getProcedures be called by the
- * current user?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean allProceduresAreCallable() throws SQLException;
- /**
- * Can all the tables returned by getTable be SELECTed by the
- * current user?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean allTablesAreSelectable() throws SQLException;
- /**
- * What's the url for this database?
- *
- * @return the url or null if it cannot be generated
- * @exception SQLException if a database access error occurs
- */
- String getURL() throws SQLException;
- /**
- * What's our user name as known to the database?
- *
- * @return our database user name
- * @exception SQLException if a database access error occurs
- */
- String getUserName() throws SQLException;
- /**
- * Is the database in read-only mode?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean isReadOnly() throws SQLException;
- /**
- * Are NULL values sorted high?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean nullsAreSortedHigh() throws SQLException;
- /**
- * Are NULL values sorted low?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean nullsAreSortedLow() throws SQLException;
- /**
- * Are NULL values sorted at the start regardless of sort order?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean nullsAreSortedAtStart() throws SQLException;
- /**
- * Are NULL values sorted at the end regardless of sort order?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean nullsAreSortedAtEnd() throws SQLException;
- /**
- * What's the name of this database product?
- *
- * @return database product name
- * @exception SQLException if a database access error occurs
- */
- String getDatabaseProductName() throws SQLException;
- /**
- * What's the version of this database product?
- *
- * @return database version
- * @exception SQLException if a database access error occurs
- */
- String getDatabaseProductVersion() throws SQLException;
- /**
- * What's the name of this JDBC driver?
- *
- * @return JDBC driver name
- * @exception SQLException if a database access error occurs
- */
- String getDriverName() throws SQLException;
- /**
- * What's the version of this JDBC driver?
- *
- * @return JDBC driver version
- * @exception SQLException if a database access error occurs
- */
- String getDriverVersion() throws SQLException;
- /**
- * What's this JDBC driver's major version number?
- *
- * @return JDBC driver major version
- */
- int getDriverMajorVersion();
- /**
- * What's this JDBC driver's minor version number?
- *
- * @return JDBC driver minor version number
- */
- int getDriverMinorVersion();
- /**
- * Does the database store tables in a local file?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean usesLocalFiles() throws SQLException;
- /**
- * Does the database use a file for each table?
- *
- * @return true if the database uses a local file for each table
- * @exception SQLException if a database access error occurs
- */
- boolean usesLocalFilePerTable() throws SQLException;
- /**
- * Does the database treat mixed case unquoted SQL identifiers as
- * case sensitive and as a result store them in mixed case?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver will always return false.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsMixedCaseIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case unquoted SQL identifiers as
- * case insensitive and store them in upper case?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean storesUpperCaseIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case unquoted SQL identifiers as
- * case insensitive and store them in lower case?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean storesLowerCaseIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case unquoted SQL identifiers as
- * case insensitive and store them in mixed case?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean storesMixedCaseIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case quoted SQL identifiers as
- * case sensitive and as a result store them in mixed case?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver will always return true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsMixedCaseQuotedIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case quoted SQL identifiers as
- * case insensitive and store them in upper case?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean storesUpperCaseQuotedIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case quoted SQL identifiers as
- * case insensitive and store them in lower case?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean storesLowerCaseQuotedIdentifiers() throws SQLException;
- /**
- * Does the database treat mixed case quoted SQL identifiers as
- * case insensitive and store them in mixed case?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean storesMixedCaseQuotedIdentifiers() throws SQLException;
- /**
- * What's the string used to quote SQL identifiers?
- * This returns a space " " if identifier quoting isn't supported.
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup>
- * driver always uses a double quote character.
- *
- * @return the quoting string
- * @exception SQLException if a database access error occurs
- */
- String getIdentifierQuoteString() throws SQLException;
- /**
- * Gets a comma-separated list of all a database's SQL keywords
- * that are NOT also SQL92 keywords.
- *
- * @return the list
- * @exception SQLException if a database access error occurs
- */
- String getSQLKeywords() throws SQLException;
- /**
- * Gets a comma-separated list of math functions. These are the
- * X/Open CLI math function names used in the JDBC function escape
- * clause.
- *
- * @return the list
- * @exception SQLException if a database access error occurs
- */
- String getNumericFunctions() throws SQLException;
- /**
- * Gets a comma-separated list of string functions. These are the
- * X/Open CLI string function names used in the JDBC function escape
- * clause.
- *
- * @return the list
- * @exception SQLException if a database access error occurs
- */
- String getStringFunctions() throws SQLException;
- /**
- * Gets a comma-separated list of system functions. These are the
- * X/Open CLI system function names used in the JDBC function escape
- * clause.
- *
- * @return the list
- * @exception SQLException if a database access error occurs
- */
- String getSystemFunctions() throws SQLException;
- /**
- * Gets a comma-separated list of time and date functions.
- *
- * @return the list
- * @exception SQLException if a database access error occurs
- */
- String getTimeDateFunctions() throws 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.
- *
- * <P>The '_' character represents any single character.
- * <P>The '%' character represents any sequence of zero or
- * more characters.
- *
- * @return the string used to escape wildcard characters
- * @exception SQLException if a database access error occurs
- */
- String getSearchStringEscape() throws SQLException;
- /**
- * Gets all the "extra" characters that can be used in unquoted
- * identifier names (those beyond a-z, A-Z, 0-9 and _).
- *
- * @return the string containing the extra characters
- * @exception SQLException if a database access error occurs
- */
- String getExtraNameCharacters() throws SQLException;
- //--------------------------------------------------------------------
- // Functions describing which features are supported.
- /**
- * Is "ALTER TABLE" with add column supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsAlterTableWithAddColumn() throws SQLException;
- /**
- * Is "ALTER TABLE" with drop column supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsAlterTableWithDropColumn() throws SQLException;
- /**
- * Is column aliasing supported?
- *
- * <P>If so, the SQL AS clause can be used to provide names for
- * computed columns or to provide alias names for columns as
- * required.
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsColumnAliasing() throws SQLException;
- /**
- * Are concatenations between NULL and non-NULL values NULL?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean nullPlusNonNullIsNull() throws SQLException;
- /**
- * Is the CONVERT function between SQL types supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsConvert() throws SQLException;
- /**
- * Is CONVERT between the given SQL types supported?
- *
- * @param fromType the type to convert from
- * @param toType the type to convert to
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- * @see Types
- */
- boolean supportsConvert(int fromType, int toType) throws SQLException;
- /**
- * Are table correlation names supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsTableCorrelationNames() throws SQLException;
- /**
- * If table correlation names are supported, are they restricted
- * to be different from the names of the tables?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsDifferentTableCorrelationNames() throws SQLException;
- /**
- * Are expressions in "ORDER BY" lists supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsExpressionsInOrderBy() throws SQLException;
- /**
- * Can an "ORDER BY" clause use columns not in the SELECT statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsOrderByUnrelated() throws SQLException;
- /**
- * Is some form of "GROUP BY" clause supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsGroupBy() throws SQLException;
- /**
- * Can a "GROUP BY" clause use columns not in the SELECT?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsGroupByUnrelated() throws SQLException;
- /**
- * Can a "GROUP BY" clause add columns not in the SELECT
- * provided it specifies all the columns in the SELECT?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsGroupByBeyondSelect() throws SQLException;
- /**
- * Is the escape character in "LIKE" clauses supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsLikeEscapeClause() throws SQLException;
- /**
- * Are multiple ResultSets from a single execute supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsMultipleResultSets() throws SQLException;
- /**
- * Can we have multiple transactions open at once (on different
- * connections)?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsMultipleTransactions() throws SQLException;
- /**
- * Can columns be defined as non-nullable?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsNonNullableColumns() throws SQLException;
- /**
- * Is the ODBC Minimum SQL grammar supported?
- *
- * All JDBC Compliant<sup><font size=-2>TM</font></sup> drivers must return true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsMinimumSQLGrammar() throws SQLException;
- /**
- * Is the ODBC Core SQL grammar supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCoreSQLGrammar() throws SQLException;
- /**
- * Is the ODBC Extended SQL grammar supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsExtendedSQLGrammar() throws SQLException;
- /**
- * Is the ANSI92 entry level SQL grammar supported?
- *
- * All JDBC Compliant<sup><font size=-2>TM</font></sup> drivers must return true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsANSI92EntryLevelSQL() throws SQLException;
- /**
- * Is the ANSI92 intermediate SQL grammar supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsANSI92IntermediateSQL() throws SQLException;
- /**
- * Is the ANSI92 full SQL grammar supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsANSI92FullSQL() throws SQLException;
- /**
- * Is the SQL Integrity Enhancement Facility supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsIntegrityEnhancementFacility() throws SQLException;
- /**
- * Is some form of outer join supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsOuterJoins() throws SQLException;
- /**
- * Are full nested outer joins supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsFullOuterJoins() throws SQLException;
- /**
- * Is there limited support for outer joins? (This will be true
- * if supportFullOuterJoins is true.)
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsLimitedOuterJoins() throws SQLException;
- /**
- * What's the database vendor's preferred term for "schema"?
- *
- * @return the vendor term
- * @exception SQLException if a database access error occurs
- */
- String getSchemaTerm() throws SQLException;
- /**
- * What's the database vendor's preferred term for "procedure"?
- *
- * @return the vendor term
- * @exception SQLException if a database access error occurs
- */
- String getProcedureTerm() throws SQLException;
- /**
- * What's the database vendor's preferred term for "catalog"?
- *
- * @return the vendor term
- * @exception SQLException if a database access error occurs
- */
- String getCatalogTerm() throws SQLException;
- /**
- * Does a catalog appear at the start of a qualified table name?
- * (Otherwise it appears at the end)
- *
- * @return true if it appears at the start
- * @exception SQLException if a database access error occurs
- */
- boolean isCatalogAtStart() throws SQLException;
- /**
- * What's the separator between catalog and table name?
- *
- * @return the separator string
- * @exception SQLException if a database access error occurs
- */
- String getCatalogSeparator() throws SQLException;
- /**
- * Can a schema name be used in a data manipulation statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSchemasInDataManipulation() throws SQLException;
- /**
- * Can a schema name be used in a procedure call statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSchemasInProcedureCalls() throws SQLException;
- /**
- * Can a schema name be used in a table definition statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSchemasInTableDefinitions() throws SQLException;
- /**
- * Can a schema name be used in an index definition statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSchemasInIndexDefinitions() throws SQLException;
- /**
- * Can a schema name be used in a privilege definition statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSchemasInPrivilegeDefinitions() throws SQLException;
- /**
- * Can a catalog name be used in a data manipulation statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCatalogsInDataManipulation() throws SQLException;
- /**
- * Can a catalog name be used in a procedure call statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCatalogsInProcedureCalls() throws SQLException;
- /**
- * Can a catalog name be used in a table definition statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCatalogsInTableDefinitions() throws SQLException;
- /**
- * Can a catalog name be used in an index definition statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCatalogsInIndexDefinitions() throws SQLException;
- /**
- * Can a catalog name be used in a privilege definition statement?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCatalogsInPrivilegeDefinitions() throws SQLException;
- /**
- * Is positioned DELETE supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsPositionedDelete() throws SQLException;
- /**
- * Is positioned UPDATE supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsPositionedUpdate() throws SQLException;
- /**
- * Is SELECT for UPDATE supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSelectForUpdate() throws SQLException;
- /**
- * Are stored procedure calls using the stored procedure escape
- * syntax supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsStoredProcedures() throws SQLException;
- /**
- * Are subqueries in comparison expressions supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSubqueriesInComparisons() throws SQLException;
- /**
- * Are subqueries in 'exists' expressions supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSubqueriesInExists() throws SQLException;
- /**
- * Are subqueries in 'in' statements supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSubqueriesInIns() throws SQLException;
- /**
- * Are subqueries in quantified expressions supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsSubqueriesInQuantifieds() throws SQLException;
- /**
- * Are correlated subqueries supported?
- *
- * A JDBC Compliant<sup><font size=-2>TM</font></sup> driver always returns true.
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsCorrelatedSubqueries() throws SQLException;
- /**
- * Is SQL UNION supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsUnion() throws SQLException;
- /**
- * Is SQL UNION ALL supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsUnionAll() throws SQLException;
- /**
- * Can cursors remain open across commits?
- *
- * @return <code>true</code> if cursors always remain open;
- * <code>false</code> if they might not remain open
- * @exception SQLException if a database access error occurs
- */
- boolean supportsOpenCursorsAcrossCommit() throws SQLException;
- /**
- * Can cursors remain open across rollbacks?
- *
- * @return <code>true</code> if cursors always remain open;
- * <code>false</code> if they might not remain open
- * @exception SQLException if a database access error occurs
- */
- boolean supportsOpenCursorsAcrossRollback() throws SQLException;
- /**
- * Can statements remain open across commits?
- *
- * @return <code>true</code> if statements always remain open;
- * <code>false</code> if they might not remain open
- * @exception SQLException if a database access error occurs
- */
- boolean supportsOpenStatementsAcrossCommit() throws SQLException;
- /**
- * Can statements remain open across rollbacks?
- *
- * @return <code>true</code> if statements always remain open;
- * <code>false</code> if they might not remain open
- * @exception SQLException if a database access error occurs
- */
- boolean supportsOpenStatementsAcrossRollback() throws SQLException;
- //----------------------------------------------------------------------
- // The following group of methods exposes various limitations
- // based on the target database with the current driver.
- // Unless otherwise specified, a result of zero means there is no
- // limit, or the limit is not known.
- /**
- * How many hex characters can you have in an inline binary literal?
- *
- * @return max binary literal length in hex characters;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxBinaryLiteralLength() throws SQLException;
- /**
- * What's the max length for a character literal?
- *
- * @return max literal length;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxCharLiteralLength() throws SQLException;
- /**
- * What's the limit on column name length?
- *
- * @return max column name length;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxColumnNameLength() throws SQLException;
- /**
- * What's the maximum number of columns in a "GROUP BY" clause?
- *
- * @return max number of columns;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxColumnsInGroupBy() throws SQLException;
- /**
- * What's the maximum number of columns allowed in an index?
- *
- * @return max number of columns;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxColumnsInIndex() throws SQLException;
- /**
- * What's the maximum number of columns in an "ORDER BY" clause?
- *
- * @return max number of columns;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxColumnsInOrderBy() throws SQLException;
- /**
- * What's the maximum number of columns in a "SELECT" list?
- *
- * @return max number of columns;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxColumnsInSelect() throws SQLException;
- /**
- * What's the maximum number of columns in a table?
- *
- * @return max number of columns;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxColumnsInTable() throws SQLException;
- /**
- * How many active connections can we have at a time to this database?
- *
- * @return max number of active connections;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxConnections() throws SQLException;
- /**
- * What's the maximum cursor name length?
- *
- * @return max cursor name length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxCursorNameLength() throws SQLException;
- /**
- * What's the maximum length of an index (in bytes)?
- *
- * @return max index length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxIndexLength() throws SQLException;
- /**
- * What's the maximum length allowed for a schema name?
- *
- * @return max name length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxSchemaNameLength() throws SQLException;
- /**
- * What's the maximum length of a procedure name?
- *
- * @return max name length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxProcedureNameLength() throws SQLException;
- /**
- * What's the maximum length of a catalog name?
- *
- * @return max name length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxCatalogNameLength() throws SQLException;
- /**
- * What's the maximum length of a single row?
- *
- * @return max row size in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxRowSize() throws SQLException;
- /**
- * Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY
- * blobs?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean doesMaxRowSizeIncludeBlobs() throws SQLException;
- /**
- * What's the maximum length of a SQL statement?
- *
- * @return max length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxStatementLength() throws SQLException;
- /**
- * How many active statements can we have open at one time to this
- * database?
- *
- * @return the maximum number of statements that can be open at one time;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxStatements() throws SQLException;
- /**
- * What's the maximum length of a table name?
- *
- * @return max name length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxTableNameLength() throws SQLException;
- /**
- * What's the maximum number of tables in a SELECT statement?
- *
- * @return the maximum number of tables allowed in a SELECT statement;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxTablesInSelect() throws SQLException;
- /**
- * What's the maximum length of a user name?
- *
- * @return max user name length in bytes;
- * a result of zero means that there is no limit or the limit is not known
- * @exception SQLException if a database access error occurs
- */
- int getMaxUserNameLength() throws SQLException;
- //----------------------------------------------------------------------
- /**
- * What's the database's default transaction isolation level? The
- * values are defined in <code>java.sql.Connection</code>.
- *
- * @return the default isolation level
- * @exception SQLException if a database access error occurs
- * @see Connection
- */
- int getDefaultTransactionIsolation() throws SQLException;
- /**
- * Are transactions supported? If not, invoking the method
- * <code>commit</code> is a noop and the
- * isolation level is TRANSACTION_NONE.
- *
- * @return <code>true</code> if transactions are supported; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsTransactions() throws SQLException;
- /**
- * Does this database support the given transaction isolation level?
- *
- * @param level the values are defined in <code>java.sql.Connection</code>
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- * @see Connection
- */
- boolean supportsTransactionIsolationLevel(int level)
- throws SQLException;
- /**
- * Are both data definition and data manipulation statements
- * within a transaction supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsDataDefinitionAndDataManipulationTransactions()
- throws SQLException;
- /**
- * Are only data manipulation statements within a transaction
- * supported?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean supportsDataManipulationTransactionsOnly()
- throws SQLException;
- /**
- * Does a data definition statement within a transaction force the
- * transaction to commit?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean dataDefinitionCausesTransactionCommit()
- throws SQLException;
- /**
- * Is a data definition statement within a transaction ignored?
- *
- * @return <code>true</code> if so; <code>false</code> otherwise
- * @exception SQLException if a database access error occurs
- */
- boolean dataDefinitionIgnoredInTransactions()
- throws SQLException;
- /**
- * Gets a description of the stored procedures available in a
- * catalog.
- *
- * <P>Only procedure descriptions matching the schema and
- * procedure name criteria are returned. They are ordered by
- * PROCEDURE_SCHEM, and PROCEDURE_NAME.
- *
- * <P>Each procedure description has the the following columns:
- * <OL>
- * <LI><B>PROCEDURE_CAT</B> String => procedure catalog (may be null)
- * <LI><B>PROCEDURE_SCHEM</B> String => procedure schema (may be null)
- * <LI><B>PROCEDURE_NAME</B> String => procedure name
- * <LI> reserved for future use
- * <LI> reserved for future use
- * <LI> reserved for future use
- * <LI><B>REMARKS</B> String => explanatory comment on the procedure
- * <LI><B>PROCEDURE_TYPE</B> short => kind of procedure:
- * <UL>
- * <LI> procedureResultUnknown - May return a result
- * <LI> procedureNoResult - Does not return a result
- * <LI> procedureReturnsResult - Returns a result
- * </UL>
- * </OL>
- *
- * @param catalog a catalog name; "" retrieves those without a
- * catalog; null 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
- * @return ResultSet - each row is a procedure description
- * @exception SQLException if a database access error occurs
- * @see #getSearchStringEscape
- */
- ResultSet getProcedures(String catalog, String schemaPattern,
- String procedureNamePattern) throws SQLException;
- /**
- * A possible value for column <code>PROCEDURE_TYPE</code> in the
- * <code>ResultSet</code> object returned by the method
- * <code>getProcedures</code>.
- * <p> Indicates that it is not known whether the procedure returns
- * a result.
- */
- int procedureResultUnknown = 0;
- /**
- * A possible value for column <code>PROCEDURE_TYPE</code> in the
- * <code>ResultSet</code> object returned by the method
- * <code>getProcedures</code>.
- * <p> Indicates that the procedure does not return
- * a result.
- */
- int procedureNoResult = 1;
- /**
- * A possible value for column <code>PROCEDURE_TYPE</code> in the
- * <code>ResultSet</code> object returned by the method
- * <code>getProcedures</code>.
- * <p> Indicates that the procedure returns
- * a result.
- */
- int procedureReturnsResult = 2;
- /**
- * Gets a description of a catalog's stored procedure parameters
- * and result columns.
- *
- * <P>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.
- *
- * <P>Each row in the ResultSet is a parameter description or
- * column description with the following fields:
- * <OL>
- * <LI><B>PROCEDURE_CAT</B> String => procedure catalog (may be null)
- * <LI><B>PROCEDURE_SCHEM</B> String => procedure schema (may be null)
- * <LI><B>PROCEDURE_NAME</B> String => procedure name
- * <LI><B>COLUMN_NAME</B> String => column/parameter name
- * <LI><B>COLUMN_TYPE</B> Short => kind of column/parameter:
- * <UL>
- * <LI> procedureColumnUnknown - nobody knows
- * <LI> procedureColumnIn - IN parameter
- * <LI> procedureColumnInOut - INOUT parameter
- * <LI> procedureColumnOut - OUT parameter
- * <LI> procedureColumnReturn - procedure return value
- * <LI> procedureColumnResult - result column in ResultSet
- * </UL>
- * <LI><B>DATA_TYPE</B> short => SQL type from java.sql.Types
- * <LI><B>TYPE_NAME</B> String => SQL type name, for a UDT type the
- * type name is fully qualified
- * <LI><B>PRECISION</B> int => precision
- * <LI><B>LENGTH</B> int => length in bytes of data
- * <LI><B>SCALE</B> short => scale
- * <LI><B>RADIX</B> short => radix
- * <LI><B>NULLABLE</B> short => can it contain NULL?
- * <UL>
- * <LI> procedureNoNulls - does not allow NULL values
- * <LI> procedureNullable - allows NULL values
- * <LI> procedureNullableUnknown - nullability unknown
- * </UL>
- * <LI><B>REMARKS</B> String => comment describing parameter/column
- * </OL>
- *
- * <P><B>Note:</B> 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; null 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
- * @return ResultSet - each row describes a stored procedure parameter or
- * column
- * @exception SQLException if a database access error occurs
- * @see #getSearchStringEscape
- */
- ResultSet getProcedureColumns(String catalog,
- String schemaPattern,
- String procedureNamePattern,
- String columnNamePattern) throws SQLException;
- /**
- * Indicates that type of the column is unknown.
- * A possible value for the column
- * <code>COLUMN_TYPE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureColumnUnknown = 0;
- /**
- * Indicates that the column stores IN parameters.
- * A possible value for the column
- * <code>COLUMN_TYPE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureColumnIn = 1;
- /**
- * Indicates that the column stores INOUT parameters.
- * A possible value for the column
- * <code>COLUMN_TYPE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureColumnInOut = 2;
- /**
- * Indicates that the column stores OUT parameters.
- * A possible value for the column
- * <code>COLUMN_TYPE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureColumnOut = 4;
- /**
- * Indicates that the column stores return values.
- * A possible value for the column
- * <code>COLUMN_TYPE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureColumnReturn = 5;
- /**
- * Indicates that the column stores results.
- * A possible value for the column
- * <code>COLUMN_TYPE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureColumnResult = 3;
- /**
- * Indicates that <code>NULL</code> values are not allowed.
- * A possible value for the column
- * <code>NULLABLE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureNoNulls = 0;
- /**
- * Indicates that <code>NULL</code> values are allowed.
- * A possible value for the column
- * <code>NULLABLE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureNullable = 1;
- /**
- * Indicates that whether <code>NULL</code> values are allowed
- * is unknown.
- * A possible value for the column
- * <code>NULLABLE</code>
- * in the <code>ResultSet</code>
- * returned by the method <code>getProcedureColumns</code>.
- */
- int procedureNullableUnknown = 2;
- /**
- * Gets a description of tables available in a catalog.
- *
- * <P>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.
- *
- * <P>Each table description has the following columns:
- * <OL>
- * <LI><B>TABLE_CAT</B> String => table catalog (may be null)
- * <LI><B>TABLE_SCHEM</B> String => table schema (may be null)
- * <LI><B>TABLE_NAME</B> String => table name
- * <LI><B>TABLE_TYPE</B> String => table type. Typical types are "TABLE",
- * "VIEW", "SYSTEM TABLE", "GLOBAL TEMPORARY",
- * "LOCAL TEMPORARY", "ALIAS", "SYNONYM".
- * <LI><B>REMARKS</B> String => explanatory comment on the table
- * </OL>
- *
- * <P><B>Note:</B> Some databases may not return information for
- * all tables.
- *
- * @param catalog a catalog name; "" retrieves those without a
- * catalog; null 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; null returns all types
- * @return ResultSet - each row is a table description
- * @exception SQLException if a database access error occurs
- * @see #getSearchStringEscape
- */
- ResultSet getTables(String catalog, String schemaPattern,
- String tableNamePattern, String types[]) throws SQLException;
- /**
- * Gets the schema names available in this database. The results
- * are ordered by schema name.
- *
- * <P>The schema column is:
- * <OL>
- * <LI><B>TABLE_SCHEM</B> String => schema name
- * </OL>
- *
- * @return ResultSet - each row has a single String column that is a
- * schema name
- * @exception SQLException if a database access error occurs
- */
- ResultSet getSchemas() throws SQLException;
- /**
- * Gets the catalog names available in this database. The results
- * are ordered by catalog name.
- *
- * <P>The catalog column is:
- * <OL>
- * <LI><B>TABLE_CAT</B> String => catalog name
- * </OL>
- *
- * @return ResultSet - each row has a single String column that is a
- * catalog name
- * @exception SQLException if a database access error occurs
- */
- ResultSet getCatalogs() throws SQLException;
- /**
- * Gets the table types available in this database. The results
- * are ordered by table type.
- *
- * <P>The table type is:
- * <OL>
- * <LI><B>TABLE_TYPE</B> String => table type. Typical types are "TABLE",
- * "VIEW", "SYSTEM TABLE", "GLOBAL TEMPORARY",
- * "LOCAL TEMPORARY", "ALIAS", "SYNONYM".
- * </OL>
- *
- * @return ResultSet - each row has a single String column that is a
- * table type
- * @exception SQLException if a database access error occurs
- */
- ResultSet getTableTypes() throws SQLException;
- /**
- * Gets a description of table columns available in
- * the specified catalog.
- *
- * <P>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.
- *
- * <P>Each column description has the following columns:
- * <OL>
- * <LI><B>TABLE_CAT</B> String => table catalog (may be null)
- * <LI><B>TABLE_SCHEM</B> String => table schema (may be null)
- * <LI><B>TABLE_NAME</B> String => table name
- * <LI><B>COLUMN_NAME</B> String => column name
- * <LI><B>DATA_TYPE</B> short => SQL type from java.sql.Types
- * <LI><B>TYPE_NAME</B> String => Data source dependent type name,
- * for a UDT the type name is fully qualified
- * <LI><B>COLUMN_SIZE</B> int => column size. For char or date
- * types this is the maximum number of characters, for numeric or
- * decimal types this is precision.
- * <LI><B>BUFFER_LENGTH</B> is not used.
- * <LI><B>DECIMAL_DIGITS</B> int => the number of fractional digits
- * <LI><B>NUM_PREC_RADIX</B> int => Radix (typically either 10 or 2)
- * <LI><B>NULLABLE</B> int => is NULL allowed?
- * <UL>
- * <LI> columnNoNulls - might not allow NULL values
- * <LI> columnNullable - definitely allows NULL values
- * <LI> columnNullableUnknown - nullability unknown
- * </UL>
- * <LI><B>REMARKS</B> String => comment describing column (may be null)
- * <LI><B>COLUMN_DEF</B> String => default value (may be null)
- * <LI><B>SQL_DATA_TYPE</B> int => unused
- * <LI><B>SQL_DATETIME_SUB</B> int => unused
- * <LI><B>CHAR_OCTET_LENGTH</B> int => for char types the
- * maximum number of bytes in the column
- * <LI><B>ORDINAL_POSITION</B> int => index of column in table
- * (starting at 1)
- * <LI><B>IS_NULLABLE</B> String => "NO" means column definitely
- * does not allow NULL values; "YES" means the column might
- * allow NULL values. An empty string means nobody knows.
- * </OL>
- *
- * @param catalog a catalog name; "" retrieves those without a
- * catalog; null 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 columnNamePattern a column name pattern
- * @return ResultSet - each row is a column description
- * @exception SQLException if a database access error occurs
- * @see #getSearchStringEscape
- */
- ResultSet getColumns(String catalog, String schemaPattern,
- String tableNamePattern, String columnNamePattern)
- throws SQLException;
- /**
- * Indicates that the column might not allow NULL values.
- * A possible value for the column
- * <code>NULLABLE</code>
- * in the <code>ResultSet</code> returned by the method
- * <code>getColumns</code>.
- */
- int columnNoNulls = 0;
- /**
- * Indicates that the column definitely allows <code>NULL</code> values.
- * A possible value for the column
- * <code>NULLABLE</code>
- * in the <code>ResultSet</code> returned by the method
- * <code>getColumns</code>.
- */
- int columnNullable = 1;
- /**
- * Indicates that the nullability of columns is unknown.
- * A possible value for the column
- * <code>NULLABLE</code>
- * in the <code>ResultSet</code> returned by the method
- * <code>getColumns</code>.
- */
- int columnNullableUnknown = 2;
- /**
- * Gets a description of the access rights for a table's columns.
- *
- * <P>Only privileges matching the column name criteria are
- * returned. They are ordered by COLUMN_NAME and PRIVILEGE.
- *
- * <P>Each privilige description has the following columns:
- * <OL>
- * <LI><B>TABLE_CAT</B> String => table catalog (may be null)
- * <LI><B>TABLE_SCHEM</B> String => table schema (may be null)
- * <LI><B>TABLE_NAME</B> String => table name
- * <LI><B>COLUMN_NAME</B> String => column name
- * <LI><B>GRANTOR</B> => grantor of access (may be null)
- * <LI><B>GRANTEE</B> String => grantee of access
- * <LI><B>PRIVILEGE</B> String => name of access (SELECT,
- * INSERT