Package org.apache.jena.jdbc.metadata
Class JenaMetadata
java.lang.Object
org.apache.jena.jdbc.metadata.JenaMetadata
- All Implemented Interfaces:
DatabaseMetaData
,Wrapper
- Direct Known Subclasses:
DatasetMetadata
,RemoteEndpointMetadata
Database metadata for Jena JDBC connections
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Constant for the term used for cataloguesstatic final String
Constant for the default catalog which is the only catalog we report as existing by defaultstatic final String
Constant for the default schema which is the only schema we report as existing by defaultstatic final String
Constant for the term used for schemasFields inherited from interface java.sql.DatabaseMetaData
attributeNoNulls, attributeNullable, attributeNullableUnknown, bestRowNotPseudo, bestRowPseudo, bestRowSession, bestRowTemporary, bestRowTransaction, bestRowUnknown, columnNoNulls, columnNullable, columnNullableUnknown, functionColumnIn, functionColumnInOut, functionColumnOut, functionColumnResult, functionColumnUnknown, functionNoNulls, functionNoTable, functionNullable, functionNullableUnknown, functionResultUnknown, functionReturn, functionReturnsTable, importedKeyCascade, importedKeyInitiallyDeferred, importedKeyInitiallyImmediate, importedKeyNoAction, importedKeyNotDeferrable, importedKeyRestrict, importedKeySetDefault, importedKeySetNull, procedureColumnIn, procedureColumnInOut, procedureColumnOut, procedureColumnResult, procedureColumnReturn, procedureColumnUnknown, procedureNoNulls, procedureNoResult, procedureNullable, procedureNullableUnknown, procedureResultUnknown, procedureReturnsResult, sqlStateSQL, sqlStateSQL99, sqlStateXOpen, tableIndexClustered, tableIndexHashed, tableIndexOther, tableIndexStatistic, typeNoNulls, typeNullable, typeNullableUnknown, typePredBasic, typePredChar, typePredNone, typeSearchable, versionColumnNotPseudo, versionColumnPseudo, versionColumnUnknown
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
boolean
boolean
boolean
deletesAreDetected
(int arg0) boolean
boolean
getAttributes
(String arg0, String arg1, String arg2, String arg3) getBestRowIdentifier
(String arg0, String arg1, String arg2, int arg3, boolean arg4) getColumnPrivileges
(String arg0, String arg1, String arg2, String arg3) getColumns
(String arg0, String arg1, String arg2, String arg3) final Connection
abstract int
abstract int
abstract String
abstract String
int
abstract int
abstract int
abstract String
abstract String
getExportedKeys
(String arg0, String arg1, String arg2) getFunctionColumns
(String arg0, String arg1, String arg2, String arg3) getFunctions
(String arg0, String arg1, String arg2) getImportedKeys
(String arg0, String arg1, String arg2) getIndexInfo
(String arg0, String arg1, String arg2, boolean arg3, boolean arg4) final int
final int
Gets the associated Jena connection instanceint
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
int
getPrimaryKeys
(String arg0, String arg1, String arg2) getProcedureColumns
(String arg0, String arg1, String arg2, String arg3) getProcedures
(String arg0, String arg1, String arg2) getPseudoColumns
(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) int
getSchemas
(String catalog, String schemaPattern) int
getSuperTables
(String arg0, String arg1, String arg2) getSuperTypes
(String arg0, String arg1, String arg2) getTablePrivileges
(String arg0, String arg1, String arg2) abstract String
getURL()
getVersionColumns
(String arg0, String arg1, String arg2) boolean
insertsAreDetected
(int arg0) boolean
boolean
boolean
isWrapperFor
(Class<?> arg0) boolean
boolean
boolean
boolean
boolean
boolean
boolean
othersDeletesAreVisible
(int arg0) boolean
othersInsertsAreVisible
(int arg0) boolean
othersUpdatesAreVisible
(int arg0) boolean
ownDeletesAreVisible
(int arg0) boolean
ownInsertsAreVisible
(int arg0) boolean
ownUpdatesAreVisible
(int arg0) boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
supportsConvert
(int arg0, int arg1) boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
supportsResultSetConcurrency
(int type, int concurrency) boolean
supportsResultSetHoldability
(int holdability) boolean
supportsResultSetType
(int type) boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
supportsTransactionIsolationLevel
(int arg0) boolean
boolean
boolean
<T> T
boolean
updatesAreDetected
(int arg0) abstract boolean
abstract boolean
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.sql.DatabaseMetaData
getMaxLogicalLobSize, supportsRefCursors, supportsSharding
-
Field Details
-
CATALOG_TERM
Constant for the term used for catalogues- See Also:
-
SCHEMA_TERM
Constant for the term used for schemas- See Also:
-
DEFAULT_CATALOG
Constant for the default catalog which is the only catalog we report as existing by default- See Also:
-
DEFAULT_SCHEMA
Constant for the default schema which is the only schema we report as existing by default- See Also:
-
-
Constructor Details
-
JenaMetadata
Creates new connection metadata- Parameters:
connection
- Connection- Throws:
SQLException
-
-
Method Details
-
getJenaConnection
Gets the associated Jena connection instance- Returns:
- Jena connection
-
isWrapperFor
- Specified by:
isWrapperFor
in interfaceWrapper
- Throws:
SQLFeatureNotSupportedException
-
unwrap
- Specified by:
unwrap
in interfaceWrapper
- Throws:
SQLFeatureNotSupportedException
-
allProceduresAreCallable
public boolean allProceduresAreCallable()- Specified by:
allProceduresAreCallable
in interfaceDatabaseMetaData
-
allTablesAreSelectable
public boolean allTablesAreSelectable()- Specified by:
allTablesAreSelectable
in interfaceDatabaseMetaData
-
autoCommitFailureClosesAllResultSets
public boolean autoCommitFailureClosesAllResultSets()- Specified by:
autoCommitFailureClosesAllResultSets
in interfaceDatabaseMetaData
-
dataDefinitionCausesTransactionCommit
public boolean dataDefinitionCausesTransactionCommit()- Specified by:
dataDefinitionCausesTransactionCommit
in interfaceDatabaseMetaData
-
dataDefinitionIgnoredInTransactions
public boolean dataDefinitionIgnoredInTransactions()- Specified by:
dataDefinitionIgnoredInTransactions
in interfaceDatabaseMetaData
-
deletesAreDetected
public boolean deletesAreDetected(int arg0) - Specified by:
deletesAreDetected
in interfaceDatabaseMetaData
-
doesMaxRowSizeIncludeBlobs
public boolean doesMaxRowSizeIncludeBlobs()- Specified by:
doesMaxRowSizeIncludeBlobs
in interfaceDatabaseMetaData
-
getAttributes
public ResultSet getAttributes(String arg0, String arg1, String arg2, String arg3) throws SQLException - Specified by:
getAttributes
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getBestRowIdentifier
public ResultSet getBestRowIdentifier(String arg0, String arg1, String arg2, int arg3, boolean arg4) throws SQLException - Specified by:
getBestRowIdentifier
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getCatalogSeparator
- Specified by:
getCatalogSeparator
in interfaceDatabaseMetaData
-
getCatalogTerm
- Specified by:
getCatalogTerm
in interfaceDatabaseMetaData
-
getCatalogs
- Specified by:
getCatalogs
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getClientInfoProperties
- Specified by:
getClientInfoProperties
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getColumnPrivileges
public ResultSet getColumnPrivileges(String arg0, String arg1, String arg2, String arg3) throws SQLException - Specified by:
getColumnPrivileges
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getColumns
- Specified by:
getColumns
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getConnection
- Specified by:
getConnection
in interfaceDatabaseMetaData
-
getCrossReference
public ResultSet getCrossReference(String arg0, String arg1, String arg2, String arg3, String arg4, String arg5) throws SQLException - Specified by:
getCrossReference
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getDatabaseMajorVersion
public abstract int getDatabaseMajorVersion()- Specified by:
getDatabaseMajorVersion
in interfaceDatabaseMetaData
-
getDatabaseMinorVersion
public abstract int getDatabaseMinorVersion()- Specified by:
getDatabaseMinorVersion
in interfaceDatabaseMetaData
-
getDatabaseProductName
- Specified by:
getDatabaseProductName
in interfaceDatabaseMetaData
-
getDatabaseProductVersion
- Specified by:
getDatabaseProductVersion
in interfaceDatabaseMetaData
-
getDefaultTransactionIsolation
public int getDefaultTransactionIsolation()- Specified by:
getDefaultTransactionIsolation
in interfaceDatabaseMetaData
-
getDriverMajorVersion
public abstract int getDriverMajorVersion()- Specified by:
getDriverMajorVersion
in interfaceDatabaseMetaData
-
getDriverMinorVersion
public abstract int getDriverMinorVersion()- Specified by:
getDriverMinorVersion
in interfaceDatabaseMetaData
-
getDriverName
- Specified by:
getDriverName
in interfaceDatabaseMetaData
-
getDriverVersion
- Specified by:
getDriverVersion
in interfaceDatabaseMetaData
-
getExportedKeys
- Specified by:
getExportedKeys
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getExtraNameCharacters
- Specified by:
getExtraNameCharacters
in interfaceDatabaseMetaData
-
getFunctionColumns
public ResultSet getFunctionColumns(String arg0, String arg1, String arg2, String arg3) throws SQLException - Specified by:
getFunctionColumns
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getFunctions
- Specified by:
getFunctions
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getIdentifierQuoteString
- Specified by:
getIdentifierQuoteString
in interfaceDatabaseMetaData
-
getImportedKeys
- Specified by:
getImportedKeys
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getIndexInfo
public ResultSet getIndexInfo(String arg0, String arg1, String arg2, boolean arg3, boolean arg4) throws SQLException - Specified by:
getIndexInfo
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getJDBCMajorVersion
public final int getJDBCMajorVersion()- Specified by:
getJDBCMajorVersion
in interfaceDatabaseMetaData
-
getJDBCMinorVersion
public final int getJDBCMinorVersion()- Specified by:
getJDBCMinorVersion
in interfaceDatabaseMetaData
-
getMaxBinaryLiteralLength
public int getMaxBinaryLiteralLength()- Specified by:
getMaxBinaryLiteralLength
in interfaceDatabaseMetaData
-
getMaxCatalogNameLength
public int getMaxCatalogNameLength()- Specified by:
getMaxCatalogNameLength
in interfaceDatabaseMetaData
-
getMaxCharLiteralLength
public int getMaxCharLiteralLength()- Specified by:
getMaxCharLiteralLength
in interfaceDatabaseMetaData
-
getMaxColumnNameLength
public int getMaxColumnNameLength()- Specified by:
getMaxColumnNameLength
in interfaceDatabaseMetaData
-
getMaxColumnsInGroupBy
public int getMaxColumnsInGroupBy()- Specified by:
getMaxColumnsInGroupBy
in interfaceDatabaseMetaData
-
getMaxColumnsInIndex
public int getMaxColumnsInIndex()- Specified by:
getMaxColumnsInIndex
in interfaceDatabaseMetaData
-
getMaxColumnsInOrderBy
public int getMaxColumnsInOrderBy()- Specified by:
getMaxColumnsInOrderBy
in interfaceDatabaseMetaData
-
getMaxColumnsInSelect
public int getMaxColumnsInSelect()- Specified by:
getMaxColumnsInSelect
in interfaceDatabaseMetaData
-
getMaxColumnsInTable
public int getMaxColumnsInTable()- Specified by:
getMaxColumnsInTable
in interfaceDatabaseMetaData
-
getMaxConnections
public int getMaxConnections()- Specified by:
getMaxConnections
in interfaceDatabaseMetaData
-
getMaxCursorNameLength
public int getMaxCursorNameLength()- Specified by:
getMaxCursorNameLength
in interfaceDatabaseMetaData
-
getMaxIndexLength
public int getMaxIndexLength()- Specified by:
getMaxIndexLength
in interfaceDatabaseMetaData
-
getMaxProcedureNameLength
public int getMaxProcedureNameLength()- Specified by:
getMaxProcedureNameLength
in interfaceDatabaseMetaData
-
getMaxRowSize
public int getMaxRowSize()- Specified by:
getMaxRowSize
in interfaceDatabaseMetaData
-
getMaxSchemaNameLength
public int getMaxSchemaNameLength()- Specified by:
getMaxSchemaNameLength
in interfaceDatabaseMetaData
-
getMaxStatementLength
public int getMaxStatementLength()- Specified by:
getMaxStatementLength
in interfaceDatabaseMetaData
-
getMaxStatements
public int getMaxStatements()- Specified by:
getMaxStatements
in interfaceDatabaseMetaData
-
getMaxTableNameLength
public int getMaxTableNameLength()- Specified by:
getMaxTableNameLength
in interfaceDatabaseMetaData
-
getMaxTablesInSelect
public int getMaxTablesInSelect()- Specified by:
getMaxTablesInSelect
in interfaceDatabaseMetaData
-
getMaxUserNameLength
public int getMaxUserNameLength()- Specified by:
getMaxUserNameLength
in interfaceDatabaseMetaData
-
getNumericFunctions
- Specified by:
getNumericFunctions
in interfaceDatabaseMetaData
-
getPrimaryKeys
- Specified by:
getPrimaryKeys
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getProcedureColumns
public ResultSet getProcedureColumns(String arg0, String arg1, String arg2, String arg3) throws SQLException - Specified by:
getProcedureColumns
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getProcedureTerm
- Specified by:
getProcedureTerm
in interfaceDatabaseMetaData
-
getProcedures
- Specified by:
getProcedures
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getResultSetHoldability
public int getResultSetHoldability()- Specified by:
getResultSetHoldability
in interfaceDatabaseMetaData
-
getRowIdLifetime
- Specified by:
getRowIdLifetime
in interfaceDatabaseMetaData
-
getSQLKeywords
- Specified by:
getSQLKeywords
in interfaceDatabaseMetaData
-
getSQLStateType
public int getSQLStateType()- Specified by:
getSQLStateType
in interfaceDatabaseMetaData
-
getSchemaTerm
- Specified by:
getSchemaTerm
in interfaceDatabaseMetaData
-
getSchemas
- Specified by:
getSchemas
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getSchemas
- Specified by:
getSchemas
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getSearchStringEscape
- Specified by:
getSearchStringEscape
in interfaceDatabaseMetaData
-
getStringFunctions
- Specified by:
getStringFunctions
in interfaceDatabaseMetaData
-
getSuperTables
- Specified by:
getSuperTables
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getSuperTypes
- Specified by:
getSuperTypes
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getSystemFunctions
- Specified by:
getSystemFunctions
in interfaceDatabaseMetaData
-
getTablePrivileges
- Specified by:
getTablePrivileges
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getTableTypes
- Specified by:
getTableTypes
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getTables
public ResultSet getTables(String arg0, String arg1, String arg2, String[] arg3) throws SQLException - Specified by:
getTables
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getTimeDateFunctions
- Specified by:
getTimeDateFunctions
in interfaceDatabaseMetaData
-
getTypeInfo
- Specified by:
getTypeInfo
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getUDTs
- Specified by:
getUDTs
in interfaceDatabaseMetaData
- Throws:
SQLException
-
getURL
- Specified by:
getURL
in interfaceDatabaseMetaData
-
getUserName
- Specified by:
getUserName
in interfaceDatabaseMetaData
-
getVersionColumns
- Specified by:
getVersionColumns
in interfaceDatabaseMetaData
- Throws:
SQLException
-
insertsAreDetected
public boolean insertsAreDetected(int arg0) - Specified by:
insertsAreDetected
in interfaceDatabaseMetaData
-
isCatalogAtStart
public boolean isCatalogAtStart()- Specified by:
isCatalogAtStart
in interfaceDatabaseMetaData
-
isReadOnly
- Specified by:
isReadOnly
in interfaceDatabaseMetaData
- Throws:
SQLException
-
locatorsUpdateCopy
public boolean locatorsUpdateCopy()- Specified by:
locatorsUpdateCopy
in interfaceDatabaseMetaData
-
nullPlusNonNullIsNull
public boolean nullPlusNonNullIsNull()- Specified by:
nullPlusNonNullIsNull
in interfaceDatabaseMetaData
-
nullsAreSortedAtEnd
public boolean nullsAreSortedAtEnd()- Specified by:
nullsAreSortedAtEnd
in interfaceDatabaseMetaData
-
nullsAreSortedAtStart
public boolean nullsAreSortedAtStart()- Specified by:
nullsAreSortedAtStart
in interfaceDatabaseMetaData
-
nullsAreSortedHigh
public boolean nullsAreSortedHigh()- Specified by:
nullsAreSortedHigh
in interfaceDatabaseMetaData
-
nullsAreSortedLow
public boolean nullsAreSortedLow()- Specified by:
nullsAreSortedLow
in interfaceDatabaseMetaData
-
othersDeletesAreVisible
public boolean othersDeletesAreVisible(int arg0) - Specified by:
othersDeletesAreVisible
in interfaceDatabaseMetaData
-
othersInsertsAreVisible
public boolean othersInsertsAreVisible(int arg0) - Specified by:
othersInsertsAreVisible
in interfaceDatabaseMetaData
-
othersUpdatesAreVisible
public boolean othersUpdatesAreVisible(int arg0) - Specified by:
othersUpdatesAreVisible
in interfaceDatabaseMetaData
-
ownDeletesAreVisible
public boolean ownDeletesAreVisible(int arg0) - Specified by:
ownDeletesAreVisible
in interfaceDatabaseMetaData
-
ownInsertsAreVisible
public boolean ownInsertsAreVisible(int arg0) - Specified by:
ownInsertsAreVisible
in interfaceDatabaseMetaData
-
ownUpdatesAreVisible
public boolean ownUpdatesAreVisible(int arg0) - Specified by:
ownUpdatesAreVisible
in interfaceDatabaseMetaData
-
storesLowerCaseIdentifiers
public boolean storesLowerCaseIdentifiers()- Specified by:
storesLowerCaseIdentifiers
in interfaceDatabaseMetaData
-
storesLowerCaseQuotedIdentifiers
public boolean storesLowerCaseQuotedIdentifiers()- Specified by:
storesLowerCaseQuotedIdentifiers
in interfaceDatabaseMetaData
-
storesMixedCaseIdentifiers
public boolean storesMixedCaseIdentifiers()- Specified by:
storesMixedCaseIdentifiers
in interfaceDatabaseMetaData
-
storesMixedCaseQuotedIdentifiers
public boolean storesMixedCaseQuotedIdentifiers()- Specified by:
storesMixedCaseQuotedIdentifiers
in interfaceDatabaseMetaData
-
storesUpperCaseIdentifiers
public boolean storesUpperCaseIdentifiers()- Specified by:
storesUpperCaseIdentifiers
in interfaceDatabaseMetaData
-
storesUpperCaseQuotedIdentifiers
public boolean storesUpperCaseQuotedIdentifiers()- Specified by:
storesUpperCaseQuotedIdentifiers
in interfaceDatabaseMetaData
-
supportsANSI92EntryLevelSQL
public boolean supportsANSI92EntryLevelSQL()- Specified by:
supportsANSI92EntryLevelSQL
in interfaceDatabaseMetaData
-
supportsANSI92FullSQL
public boolean supportsANSI92FullSQL()- Specified by:
supportsANSI92FullSQL
in interfaceDatabaseMetaData
-
supportsANSI92IntermediateSQL
public boolean supportsANSI92IntermediateSQL()- Specified by:
supportsANSI92IntermediateSQL
in interfaceDatabaseMetaData
-
supportsAlterTableWithAddColumn
public boolean supportsAlterTableWithAddColumn()- Specified by:
supportsAlterTableWithAddColumn
in interfaceDatabaseMetaData
-
supportsAlterTableWithDropColumn
public boolean supportsAlterTableWithDropColumn()- Specified by:
supportsAlterTableWithDropColumn
in interfaceDatabaseMetaData
-
supportsBatchUpdates
public boolean supportsBatchUpdates()- Specified by:
supportsBatchUpdates
in interfaceDatabaseMetaData
-
supportsCatalogsInDataManipulation
public boolean supportsCatalogsInDataManipulation()- Specified by:
supportsCatalogsInDataManipulation
in interfaceDatabaseMetaData
-
supportsCatalogsInIndexDefinitions
public boolean supportsCatalogsInIndexDefinitions()- Specified by:
supportsCatalogsInIndexDefinitions
in interfaceDatabaseMetaData
-
supportsCatalogsInPrivilegeDefinitions
public boolean supportsCatalogsInPrivilegeDefinitions()- Specified by:
supportsCatalogsInPrivilegeDefinitions
in interfaceDatabaseMetaData
-
supportsCatalogsInProcedureCalls
public boolean supportsCatalogsInProcedureCalls()- Specified by:
supportsCatalogsInProcedureCalls
in interfaceDatabaseMetaData
-
supportsCatalogsInTableDefinitions
public boolean supportsCatalogsInTableDefinitions()- Specified by:
supportsCatalogsInTableDefinitions
in interfaceDatabaseMetaData
-
supportsColumnAliasing
public boolean supportsColumnAliasing()- Specified by:
supportsColumnAliasing
in interfaceDatabaseMetaData
-
supportsConvert
public boolean supportsConvert()- Specified by:
supportsConvert
in interfaceDatabaseMetaData
-
supportsConvert
public boolean supportsConvert(int arg0, int arg1) - Specified by:
supportsConvert
in interfaceDatabaseMetaData
-
supportsCoreSQLGrammar
public boolean supportsCoreSQLGrammar()- Specified by:
supportsCoreSQLGrammar
in interfaceDatabaseMetaData
-
supportsDataDefinitionAndDataManipulationTransactions
public boolean supportsDataDefinitionAndDataManipulationTransactions()- Specified by:
supportsDataDefinitionAndDataManipulationTransactions
in interfaceDatabaseMetaData
-
supportsDataManipulationTransactionsOnly
public boolean supportsDataManipulationTransactionsOnly()- Specified by:
supportsDataManipulationTransactionsOnly
in interfaceDatabaseMetaData
-
supportsDifferentTableCorrelationNames
public boolean supportsDifferentTableCorrelationNames()- Specified by:
supportsDifferentTableCorrelationNames
in interfaceDatabaseMetaData
-
supportsExpressionsInOrderBy
public boolean supportsExpressionsInOrderBy()- Specified by:
supportsExpressionsInOrderBy
in interfaceDatabaseMetaData
-
supportsExtendedSQLGrammar
public boolean supportsExtendedSQLGrammar()- Specified by:
supportsExtendedSQLGrammar
in interfaceDatabaseMetaData
-
supportsFullOuterJoins
public boolean supportsFullOuterJoins()- Specified by:
supportsFullOuterJoins
in interfaceDatabaseMetaData
-
supportsGetGeneratedKeys
public boolean supportsGetGeneratedKeys()- Specified by:
supportsGetGeneratedKeys
in interfaceDatabaseMetaData
-
supportsGroupBy
public boolean supportsGroupBy()- Specified by:
supportsGroupBy
in interfaceDatabaseMetaData
-
supportsGroupByBeyondSelect
public boolean supportsGroupByBeyondSelect()- Specified by:
supportsGroupByBeyondSelect
in interfaceDatabaseMetaData
-
supportsIntegrityEnhancementFacility
public boolean supportsIntegrityEnhancementFacility()- Specified by:
supportsIntegrityEnhancementFacility
in interfaceDatabaseMetaData
-
supportsLikeEscapeClause
public boolean supportsLikeEscapeClause()- Specified by:
supportsLikeEscapeClause
in interfaceDatabaseMetaData
-
supportsLimitedOuterJoins
public boolean supportsLimitedOuterJoins()- Specified by:
supportsLimitedOuterJoins
in interfaceDatabaseMetaData
-
supportsMinimumSQLGrammar
public boolean supportsMinimumSQLGrammar()- Specified by:
supportsMinimumSQLGrammar
in interfaceDatabaseMetaData
-
supportsMixedCaseIdentifiers
public boolean supportsMixedCaseIdentifiers()- Specified by:
supportsMixedCaseIdentifiers
in interfaceDatabaseMetaData
-
supportsMixedCaseQuotedIdentifiers
public boolean supportsMixedCaseQuotedIdentifiers()- Specified by:
supportsMixedCaseQuotedIdentifiers
in interfaceDatabaseMetaData
-
supportsMultipleOpenResults
public boolean supportsMultipleOpenResults()- Specified by:
supportsMultipleOpenResults
in interfaceDatabaseMetaData
-
supportsMultipleResultSets
public boolean supportsMultipleResultSets()- Specified by:
supportsMultipleResultSets
in interfaceDatabaseMetaData
-
supportsMultipleTransactions
public boolean supportsMultipleTransactions()- Specified by:
supportsMultipleTransactions
in interfaceDatabaseMetaData
-
supportsNamedParameters
public boolean supportsNamedParameters()- Specified by:
supportsNamedParameters
in interfaceDatabaseMetaData
-
supportsNonNullableColumns
public boolean supportsNonNullableColumns()- Specified by:
supportsNonNullableColumns
in interfaceDatabaseMetaData
-
supportsOpenCursorsAcrossCommit
public boolean supportsOpenCursorsAcrossCommit()- Specified by:
supportsOpenCursorsAcrossCommit
in interfaceDatabaseMetaData
-
supportsOpenCursorsAcrossRollback
public boolean supportsOpenCursorsAcrossRollback()- Specified by:
supportsOpenCursorsAcrossRollback
in interfaceDatabaseMetaData
-
supportsOpenStatementsAcrossCommit
public boolean supportsOpenStatementsAcrossCommit()- Specified by:
supportsOpenStatementsAcrossCommit
in interfaceDatabaseMetaData
-
supportsOpenStatementsAcrossRollback
public boolean supportsOpenStatementsAcrossRollback()- Specified by:
supportsOpenStatementsAcrossRollback
in interfaceDatabaseMetaData
-
supportsOuterJoins
public boolean supportsOuterJoins()- Specified by:
supportsOuterJoins
in interfaceDatabaseMetaData
-
supportsPositionedDelete
public boolean supportsPositionedDelete()- Specified by:
supportsPositionedDelete
in interfaceDatabaseMetaData
-
supportsPositionedUpdate
public boolean supportsPositionedUpdate()- Specified by:
supportsPositionedUpdate
in interfaceDatabaseMetaData
-
supportsResultSetConcurrency
public boolean supportsResultSetConcurrency(int type, int concurrency) - Specified by:
supportsResultSetConcurrency
in interfaceDatabaseMetaData
-
supportsResultSetHoldability
public boolean supportsResultSetHoldability(int holdability) - Specified by:
supportsResultSetHoldability
in interfaceDatabaseMetaData
-
supportsResultSetType
public boolean supportsResultSetType(int type) - Specified by:
supportsResultSetType
in interfaceDatabaseMetaData
-
supportsSavepoints
public boolean supportsSavepoints()- Specified by:
supportsSavepoints
in interfaceDatabaseMetaData
-
supportsSchemasInDataManipulation
public boolean supportsSchemasInDataManipulation()- Specified by:
supportsSchemasInDataManipulation
in interfaceDatabaseMetaData
-
supportsSchemasInIndexDefinitions
public boolean supportsSchemasInIndexDefinitions()- Specified by:
supportsSchemasInIndexDefinitions
in interfaceDatabaseMetaData
-
supportsSchemasInPrivilegeDefinitions
public boolean supportsSchemasInPrivilegeDefinitions()- Specified by:
supportsSchemasInPrivilegeDefinitions
in interfaceDatabaseMetaData
-
supportsSchemasInProcedureCalls
public boolean supportsSchemasInProcedureCalls()- Specified by:
supportsSchemasInProcedureCalls
in interfaceDatabaseMetaData
-
supportsSchemasInTableDefinitions
public boolean supportsSchemasInTableDefinitions()- Specified by:
supportsSchemasInTableDefinitions
in interfaceDatabaseMetaData
-
supportsSelectForUpdate
public boolean supportsSelectForUpdate()- Specified by:
supportsSelectForUpdate
in interfaceDatabaseMetaData
-
supportsStatementPooling
public boolean supportsStatementPooling()- Specified by:
supportsStatementPooling
in interfaceDatabaseMetaData
-
supportsStoredFunctionsUsingCallSyntax
public boolean supportsStoredFunctionsUsingCallSyntax()- Specified by:
supportsStoredFunctionsUsingCallSyntax
in interfaceDatabaseMetaData
-
supportsStoredProcedures
public boolean supportsStoredProcedures()- Specified by:
supportsStoredProcedures
in interfaceDatabaseMetaData
-
supportsSubqueriesInComparisons
public boolean supportsSubqueriesInComparisons()- Specified by:
supportsSubqueriesInComparisons
in interfaceDatabaseMetaData
-
supportsSubqueriesInExists
public boolean supportsSubqueriesInExists()- Specified by:
supportsSubqueriesInExists
in interfaceDatabaseMetaData
-
supportsSubqueriesInIns
public boolean supportsSubqueriesInIns()- Specified by:
supportsSubqueriesInIns
in interfaceDatabaseMetaData
-
supportsSubqueriesInQuantifieds
public boolean supportsSubqueriesInQuantifieds()- Specified by:
supportsSubqueriesInQuantifieds
in interfaceDatabaseMetaData
-
supportsTableCorrelationNames
public boolean supportsTableCorrelationNames()- Specified by:
supportsTableCorrelationNames
in interfaceDatabaseMetaData
-
supportsTransactionIsolationLevel
public boolean supportsTransactionIsolationLevel(int arg0) - Specified by:
supportsTransactionIsolationLevel
in interfaceDatabaseMetaData
-
supportsTransactions
public boolean supportsTransactions()- Specified by:
supportsTransactions
in interfaceDatabaseMetaData
-
supportsUnion
public boolean supportsUnion()- Specified by:
supportsUnion
in interfaceDatabaseMetaData
-
supportsUnionAll
public boolean supportsUnionAll()- Specified by:
supportsUnionAll
in interfaceDatabaseMetaData
-
updatesAreDetected
public boolean updatesAreDetected(int arg0) - Specified by:
updatesAreDetected
in interfaceDatabaseMetaData
-
usesLocalFilePerTable
public abstract boolean usesLocalFilePerTable()- Specified by:
usesLocalFilePerTable
in interfaceDatabaseMetaData
-
usesLocalFiles
public abstract boolean usesLocalFiles()- Specified by:
usesLocalFiles
in interfaceDatabaseMetaData
-
getPseudoColumns
public ResultSet getPseudoColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException - Specified by:
getPseudoColumns
in interfaceDatabaseMetaData
- Throws:
SQLException
-
generatedKeyAlwaysReturned
public boolean generatedKeyAlwaysReturned()- Specified by:
generatedKeyAlwaysReturned
in interfaceDatabaseMetaData
-