public class DatabaseDescription extends Object
| 构造器和说明 |
|---|
DatabaseDescription(DatabaseMetaData databaseMetaData) |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
allProceduresAreCallable()
Retrieves whether the current user can call all the procedures
returned by the method
getProcedures. |
String |
getCatalogSeparator()
Retrieves the
String that this database uses as the
separator between a catalog and table name. |
DatabaseMetaData |
getDbMetaData() |
boolean |
isCatalogAtStart()
Retrieves whether a catalog appears at the start of a fully qualified
table name.
|
boolean |
supportsBatchUpdates()
Retrieves whether this database supports batch updates.
|
boolean |
supportsCatalogsInIndexDefinitions()
Retrieves whether a catalog name can be used in an index definition statement.
|
boolean |
supportsCatalogsInTableDefinitions()
Retrieves whether a catalog name can be used in a table definition statement.
|
boolean |
supportsMixedCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case sensitive and as a result stores them in mixed case.
|
boolean |
supportsMixedCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case sensitive and as a result stores them in mixed case.
|
boolean |
supportsSchemasInIndexDefinitions()
Retrieves whether a schema name can be used in an index definition statement.
|
boolean |
supportsSchemasInTableDefinitions()
Retrieves whether a schema name can be used in a table definition statement.
|
public DatabaseDescription(DatabaseMetaData databaseMetaData)
public boolean allProceduresAreCallable()
getProcedures.true if so; false otherwisepublic boolean supportsMixedCaseIdentifiers()
true if so; false otherwisepublic boolean supportsMixedCaseQuotedIdentifiers()
true if so; false otherwisepublic boolean supportsSchemasInTableDefinitions()
true if so; false otherwisepublic boolean supportsSchemasInIndexDefinitions()
true if so; false otherwisepublic boolean supportsCatalogsInTableDefinitions()
true if so; false otherwisepublic boolean supportsCatalogsInIndexDefinitions()
true if so; false otherwisepublic DatabaseMetaData getDbMetaData()
public String getCatalogSeparator()
String that this database uses as the
separator between a catalog and table name.public boolean isCatalogAtStart()
true if the catalog name appears at the beginning
of a fully qualified table name; false otherwisepublic boolean supportsBatchUpdates()
true if this database supports batch updates;
false otherwiseCopyright © 2021. All rights reserved.