Generated by
JDiff

Interface java.sql.DatabaseMetaData

Documentation changed from old to new.

Changed Methods
boolean deletesAreDetected(int) Documentation changed from old to new.
Indicates whether or not a visible row delete can be detected by calling ResultSet.rowDeleted().
ResultSet getBestRowIdentifier(String, String, String, int, boolean) Documentation changed from old to new.
Gets a description of a table's optimal set of columns that uniquely identifies a row.
ResultSet getCatalogs() Documentation changed from old to new.
Gets the catalog names available in this database.
ResultSet getColumnPrivileges(String, String, String, String) Documentation changed from old to new.
Gets a description of the access rights for a table's columns.
ResultSet getColumns(String, String, String, String) Documentation changed from old to new.
Gets a description of table columns available in the specified catalog.
Connection getConnection() Documentation changed from old to new.
Retrieves the connection that produced this metadata object.
ResultSet getCrossReference(String, String, String, String, String, String) Documentation changed from old to new.
Gets a description of the foreign key columns in the foreign key table that reference the primary key columns of the primary key table (describe how one table imports another's key.) This should normally return a single foreign key/primary key pair (most tables only import a foreign key from a table once.) They are ordered by FKTABLE_CAT FKTABLE_SCHEM FKTABLE_NAME and KEY_SEQ.
ResultSet getExportedKeys(String, String, String) Documentation changed from old to new.
Gets a description of the foreign key columns that reference a table's primary key columns (the foreign keys exported by a table).
ResultSet getImportedKeys(String, String, String) Documentation changed from old to new.
Gets a description of the primary key columns that are referenced by a table's foreign key columns (the primary keys imported by a table).
ResultSet getIndexInfo(String, String, String, boolean, boolean) Documentation changed from old to new.
Gets a description of a table's indices and statistics.
int getMaxIndexLength() Documentation changed from old to new.
Retrieves the maximum number of bytes for an index including all of the parts of the index.
int getMaxStatementLength() Documentation changed from old to new.
What's the maximum length of an SQL statement
ResultSet getPrimaryKeys(String, String, String) Documentation changed from old to new.
Gets a description of a table's primary key columns.
ResultSet getProcedureColumns(String, String, String, String) Documentation changed from old to new.
Gets a description of a catalog's stored procedure parameters and result columns.
ResultSet getProcedures(String, String, String) Documentation changed from old to new.
Gets a description of the stored procedures available in a catalog.
ResultSet getSchemas() Documentation changed from old to new.
Gets the schema names available in this database.
ResultSet getTablePrivileges(String, String, String) Documentation changed from old to new.
Gets a description of the access rights for each table available in a catalog.
ResultSet getTableTypes() Documentation changed from old to new.
Gets the table types available in this database.
ResultSet getTables(String, String, String, String[]) Documentation changed from old to new.
Gets a description of tables available in a catalog.
ResultSet getTypeInfo() Documentation changed from old to new.
Gets a description of all the standard SQL types supported by this database.
ResultSet getUDTs(String, String, String, int[]) Documentation changed from old to new.
Gets a description of the user-defined types defined in a particular schema.
ResultSet getVersionColumns(String, String, String) Documentation changed from old to new.
Gets a description of a table's columns that are automatically updated when any value in a row is updated.
boolean insertsAreDetected(int) Documentation changed from old to new.
Indicates whether or not a visible row insert can be detected by calling ResultSet.rowInserted().
boolean nullPlusNonNullIsNull() Documentation changed from old to new.
Are concatenations between NULL and non-NULL values NULL For SQL-92 compliance a JDBC technology-enabled driver will return true.
boolean othersDeletesAreVisible(int) Documentation changed from old to new.
Indicates whether deletes made by others are visible.
boolean othersInsertsAreVisible(int) Documentation changed from old to new.
Indicates whether inserts made by others are visible.
boolean othersUpdatesAreVisible(int) Documentation changed from old to new.
Indicates whether updates made by others are visible.
boolean ownDeletesAreVisible(int) Documentation changed from old to new.
Indicates whether a result set's own deletes are visible.
boolean ownInsertsAreVisible(int) Documentation changed from old to new.
Indicates whether a result set's own inserts are visible.
boolean ownUpdatesAreVisible(int) Documentation changed from old to new.
Indicates whether a result set's own updates are visible.
boolean supportsBatchUpdates() Documentation changed from old to new.
Indicates whether the driver supports batch updates.
boolean supportsMultipleResultSets() Documentation changed from old to new.
Are multiple ResultSet from a single execute supported
boolean supportsResultSetConcurrency(int, int) Documentation changed from old to new.
Does the database support the concurrency type in combination with the given result set type
boolean supportsResultSetType(int) Documentation changed from old to new.
Does the database support the given result set type
boolean updatesAreDetected(int) Documentation changed from old to new.
Indicates whether or not a visible row update can be detected by calling the method ResultSet.rowUpdated.