|
1.50.39 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--interbase.interclient.DatabaseMetaData
Provides information about the database or connection, as well as database capabilities.
Many of the methods here return lists of information in ResultSets. 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 will throw a SQLException.
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, it means that argument's criteria should be dropped from the search.
A SQLException 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.
Field Summary | |
static int |
bestRowNotPseudo
BEST ROW PSEUDO_COLUMN - is NOT a pseudo column. |
static int |
bestRowPseudo
BEST ROW PSEUDO_COLUMN - is a pseudo column. |
static int |
bestRowSession
BEST ROW SCOPE - valid for remainder of current session. |
static int |
bestRowTemporary
BEST ROW SCOPE - very temporary, while using row. |
static int |
bestRowTransaction
BEST ROW SCOPE - valid for remainder of current transaction. |
static int |
bestRowUnknown
BEST ROW PSEUDO_COLUMN - may or may not be pseudo column. |
static int |
columnNoNulls
COLUMN NULLABLE - might not allow NULL values. |
static int |
columnNullable
COLUMN NULLABLE - definitely allows NULL values. |
static int |
columnNullableUnknown
COLUMN NULLABLE - nullability unknown. |
static int |
importedKeyCascade
IMPORT KEY UPDATE_RULE and DELETE_RULE - for update, change imported key to agree with primary key update; for delete, delete rows that import a deleted key. |
static int |
importedKeyInitiallyDeferred
IMPORT KEY DEFERRABILITY - see SQL92 for definition |
static int |
importedKeyInitiallyImmediate
IMPORT KEY DEFERRABILITY - see SQL92 for definition |
static int |
importedKeyNoAction
IMPORT KEY UPDATE_RULE and DELETE_RULE - do not allow update or delete of primary key if it has been imported. |
static int |
importedKeyNotDeferrable
IMPORT KEY DEFERRABILITY - see SQL92 for definition |
static int |
importedKeyRestrict
IMPORT KEY UPDATE_RULE and DELETE_RULE - do not allow update or delete of primary key if it has been imported. |
static int |
importedKeySetDefault
IMPORT KEY UPDATE_RULE and DELETE_RULE - change imported key to default values if its primary key has been updated or deleted. |
static int |
importedKeySetNull
IMPORT KEY UPDATE_RULE and DELETE_RULE - change imported key to NULL if its primary key has been updated or deleted. |
static int |
procedureColumnIn
COLUMN_TYPE - IN parameter. |
static int |
procedureColumnInOut
COLUMN_TYPE - INOUT parameter. |
static int |
procedureColumnOut
COLUMN_TYPE - OUT parameter. |
static int |
procedureColumnResult
COLUMN_TYPE - result column in ResultSet. |
static int |
procedureColumnReturn
COLUMN_TYPE - procedure return value. |
static int |
procedureColumnUnknown
COLUMN_TYPE - nobody knows. |
static int |
procedureNoNulls
TYPE NULLABLE - does not allow NULL values. |
static int |
procedureNoResult
PROCEDURE_TYPE - Does not return a result. |
static int |
procedureNullable
TYPE NULLABLE - allows NULL values. |
static int |
procedureNullableUnknown
TYPE NULLABLE - nullability unknown. |
static int |
procedureResultUnknown
PROCEDURE_TYPE - May return a result. |
static int |
procedureReturnsResult
PROCEDURE_TYPE - Returns a result. |
static short |
tableIndexClustered
INDEX INFO TYPE - this identifies a clustered index |
static short |
tableIndexHashed
INDEX INFO TYPE - this identifies a hashed index |
static short |
tableIndexOther
INDEX INFO TYPE - this identifies some other form of index |
static short |
tableIndexStatistic
INDEX INFO TYPE - this identifies table statistics that are returned in conjuction with a table's index descriptions |
static int |
typeNoNulls
TYPE NULLABLE - does not allow NULL values. |
static int |
typeNullable
TYPE NULLABLE - allows NULL values. |
static int |
typeNullableUnknown
TYPE NULLABLE - nullability unknown. |
static int |
typePredBasic
TYPE INFO SEARCHABLE - Supported except for WHERE .. |
static int |
typePredChar
TYPE INFO SEARCHABLE - Only supported with WHERE .. |
static int |
typePredNone
TYPE INFO SEARCHABLE - No support. |
static int |
typeSearchable
TYPE INFO SEARCHABLE - Supported for all WHERE ... |
static int |
versionColumnNotPseudo
VERSION COLUMNS PSEUDO_COLUMN - is NOT a pseudo column. |
static int |
versionColumnPseudo
VERSION COLUMNS PSEUDO_COLUMN - is a pseudo column. |
static int |
versionColumnUnknown
VERSION COLUMNS PSEUDO_COLUMN - may or may not be pseudo column. |
Method Summary | |
boolean |
allProceduresAreCallable()
Can all the procedures returned by getProcedures be called by the current user. |
boolean |
allTablesAreSelectable()
Can all the tables returned by getTable be SELECTed by the current user. |
boolean |
dataDefinitionCausesTransactionCommit()
Does a data definition statement within a transaction force the transaction to commit. |
boolean |
dataDefinitionIgnoredInTransactions()
Is a data definition statement within a transaction ignored. |
boolean |
deletesAreDetected(int type)
Determine whether or not a visible row delete can be detected by calling ResultSet.rowDeleted(). |
boolean |
doesMaxRowSizeIncludeBlobs()
Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY blobs. |
ResultSet |
getBestRowIdentifier(String catalog,
String schema,
String table,
int scope,
boolean nullable)
Get a description of a table's optimal set of columns that uniquely identifies a row. |
int |
getCacheBuffers()
Get the actual number of cache page buffers being used for this connection. |
ResultSet |
getCatalogs()
Get the catalog names available in this database. |
String |
getCatalogSeparator()
What's the separator between catalog and table name. |
String |
getCatalogTerm()
What's the database vendor's preferred term for "catalog". |
ResultSet |
getColumnPrivileges(String catalog,
String schema,
String table,
String columnNamePattern)
Get a description of the access rights for a table's columns. |
ResultSet |
getColumns(String catalog,
String schemaPattern,
String tableNamePattern,
String columnNamePattern)
Get a description of table columns available in a catalog. |
Connection |
getConnection()
Return the connection that produced this metadata object. |
ResultSet |
getCrossReference(String primaryCatalog,
String primarySchema,
String primaryTable,
String foreignCatalog,
String foreignSchema,
String foreignTable)
Get a description of the foreign key columns in the foreign key table that reference the primary key columns of the primary key table. |
int |
getDatabaseMajorVersion()
Get the major version for the InterBase product. |
String |
getDatabaseProductName()
What's the name of this database product. |
String |
getDatabaseProductVersion()
What's the version of this database product. |
int |
getDefaultTransactionIsolation()
What's the database's default transaction isolation level. |
Date |
getDriverExpirationDate()
Get the expiration date for InterClient. |
int |
getDriverJDBCNetProtocolVersion()
Get the JDBC/Net protocol used by InterClient. |
int |
getDriverMajorVersion()
What's this JDBC driver's major version number. |
int |
getDriverMinorVersion()
What's this JDBC driver's minor version number. |
String |
getDriverName()
What's the name of this JDBC driver. |
String |
getDriverVersion()
What's the version of this JDBC driver. |
ResultSet |
getExportedKeys(String catalog,
String schema,
String table)
Get a description of the foreign key columns that reference a table's primary key columns (the foreign keys exported by a table). |
String |
getExtraNameCharacters()
Get all the "extra" characters that can be used in unquoted identifier names (those beyond a-z, A-Z, 0-9 and _). |
String |
getIdentifierQuoteString()
What's the string used to quote SQL identifiers. |
ResultSet |
getImportedKeys(String catalog,
String schema,
String table)
Get 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 catalog,
String schema,
String table,
boolean unique,
boolean approximate)
Get a description of a table's indices and statistics. |
int |
getMaxBinaryLiteralLength()
How many hex characters can you have in an inline binary literal. |
int |
getMaxCatalogNameLength()
What's the maximum length of a catalog name. |
int |
getMaxCharLiteralLength()
What's the max length for a character literal. |
int |
getMaxColumnNameLength()
What's the limit on column name length. |
int |
getMaxColumnsInGroupBy()
What's the maximum number of columns in a "GROUP BY" clause. |
int |
getMaxColumnsInIndex()
What's the maximum number of columns allowed in an index. |
int |
getMaxColumnsInOrderBy()
What's the maximum number of columns in an "ORDER BY" clause. |
int |
getMaxColumnsInSelect()
What's the maximum number of columns in a "SELECT" list. |
int |
getMaxColumnsInTable()
What's the maximum number of columns in a table. |
int |
getMaxConnections()
How many active connections can we have at a time to this database. |
int |
getMaxCursorNameLength()
What's the maximum cursor name length. |
int |
getMaxIndexLength()
What's the maximum length of an index (in bytes). |
int |
getMaxProcedureNameLength()
What's the maximum length of a procedure name. |
int |
getMaxRowSize()
What's the maximum length of a single row. |
int |
getMaxSchemaNameLength()
What's the maximum length allowed for a schema name. |
int |
getMaxStatementLength()
What's the maximum length of a SQL statement. |
int |
getMaxStatements()
How many active statements can we have open at one time to this database. |
int |
getMaxTableNameLength()
What's the maximum length of a table name. |
int |
getMaxTablesInSelect()
What's the maximum number of tables in a SELECT. |
int |
getMaxUserNameLength()
What's the maximum length of a user name. |
String |
getNumericFunctions()
Get a comma separated list of math functions. |
int |
getODSMajorVersion()
Get the On Disk Structure (ODS) major version for the database. |
int |
getODSMinorVersion()
Get the On Disk Structure (ODS) minor version for the database. |
int |
getPageAllocation()
Get the number of pages allocated for this database at the time of connection. |
int |
getPageSize()
Get the page size for this database. |
ResultSet |
getPrimaryKeys(String catalog,
String schema,
String table)
Get a description of a table's primary key columns. |
ResultSet |
getProcedureColumns(String catalog,
String schemaPattern,
String procedureNamePattern,
String columnNamePattern)
Get a description of a catalog's stored procedure parameters and result columns. |
ResultSet |
getProcedures(String catalog,
String schemaPattern,
String procedureNamePattern)
Get a description of stored procedures available in a catalog. |
String |
getProcedureTerm()
What's the database vendor's preferred term for "procedure". |
ResultSet |
getSchemas()
Get the schema names available in this database. |
String |
getSchemaTerm()
What's the database vendor's preferred term for "schema". |
String |
getSearchStringEscape()
This is the string that can be used to escape the wildcard characters '_' or '%' in the string pattern style catalog search parameters. |
Date |
getServerExpirationDate()
Get the expiration date for the server side JDBC middleware server (InterServer). |
int |
getServerJDBCNetProtocolVersion()
Get the JDBC/Net protocol used by InterServer. |
int |
getServerMajorVersion()
What's the major version number for InterServer. |
int |
getServerMinorVersion()
What's the minor version number for InterServer. |
String |
getServerName()
What's the name of the server side JDBC middleware server. |
int |
getServerPort()
Get the JDBC/Net middleware server (InterServer) port. |
String |
getServerVersion()
What's the version of the server side JDBC middleware server (InterServer). |
String |
getSQLKeywords()
Get a comma separated list of all a database's SQL keywords that are NOT also SQL92 keywords. |
String |
getStringFunctions()
Get a comma separated list of string functions. |
boolean |
getSweepInterval()
Get the sweep interval for automatic housekeeping. |
String |
getSystemFunctions()
Get a comma separated list of system functions. |
ResultSet |
getTablePrivileges(String catalog,
String schemaPattern,
String tableNamePattern)
Get a description of the access rights for each table available in a catalog. |
ResultSet |
getTables(String catalog,
String schemaPattern,
String tableNamePattern,
String[] types)
Get a description of tables available in a catalog. |
ResultSet |
getTableTypes()
Get the table types available in this database. |
String |
getTimeDateFunctions()
Get a comma separated list of time and date functions. |
ResultSet |
getTypeInfo()
Get a description of all the standard SQL types supported by this database. |
String |
getUDFs()
Return a list of the User-Defined Functions on this database. |
ResultSet |
getUDTs(String catalog,
String schemaPattern,
String typeNamePattern,
int[] types)
Get a description of the user-defined types defined in a particular schema. |
String |
getURL()
What's the url for this database. |
String |
getUserName()
What's our user name as known to the database. |
ResultSet |
getVersionColumns(String catalog,
String schema,
String table)
Get a description of a table's columns that are automatically updated when any value in a row is updated. |
boolean |
insertsAreDetected(int type)
Determine whether or not a visible row insert can be detected by calling ResultSet.rowInserted(). |
boolean |
isCatalogAtStart()
Does a catalog appear at the start of a qualified table name. |
boolean |
isReadOnly()
Is the database in read-only mode. |
boolean |
isSpaceReservedForVersioning()
Is space being reserved on each newly created database page for anticipated record versions. |
boolean |
isSynchronous()
Are disk writes synchronous for this connection. |
boolean |
nullPlusNonNullIsNull()
Are concatenations between NULL and non-NULL values NULL. |
boolean |
nullsAreSortedAtEnd()
Are NULL values sorted at the end regardless of sort order. |
boolean |
nullsAreSortedAtStart()
Are NULL values sorted at the start regardless of sort order. |
boolean |
nullsAreSortedHigh()
Are NULL values sorted high. |
boolean |
nullsAreSortedLow()
Are NULL values sorted low. |
boolean |
othersDeletesAreVisible(int type)
Determine whether deletes made by others are visible. |
boolean |
othersInsertsAreVisible(int type)
Determine whether inserts made by others are visible. |
boolean |
othersUpdatesAreVisible(int type)
Determine whether updates made by others are visible. |
boolean |
ownDeletesAreVisible(int type)
Determine whether a result set's own deletes visible. |
boolean |
ownInsertsAreVisible(int type)
Determine whether a result set's own inserts visible. |
boolean |
ownUpdatesAreVisible(int type)
Determine whether a result set's own updates visible. |
boolean |
storesLowerCaseIdentifiers()
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in lower case. |
boolean |
storesLowerCaseQuotedIdentifiers()
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in lower case. |
boolean |
storesMixedCaseIdentifiers()
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in mixed case. |
boolean |
storesMixedCaseQuotedIdentifiers()
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in mixed case. |
boolean |
storesUpperCaseIdentifiers()
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in upper case. |
boolean |
storesUpperCaseQuotedIdentifiers()
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in upper case. |
boolean |
supportsAlterTableWithAddColumn()
Is "ALTER TABLE" with add column supported. |
boolean |
supportsAlterTableWithDropColumn()
Is "ALTER TABLE" with drop column supported. |
boolean |
supportsANSI92EntryLevelSQL()
Is the ANSI92 entry level SQL grammar supported. |
boolean |
supportsANSI92FullSQL()
Is the ANSI92 full SQL grammar supported. |
boolean |
supportsANSI92IntermediateSQL()
Is the ANSI92 intermediate SQL grammar supported. |
boolean |
supportsBatchUpdates()
Return true if the driver supports batch updates, else return false. |
boolean |
supportsCatalogsInDataManipulation()
Can a catalog name be used in a data manipulation statement. |
boolean |
supportsCatalogsInIndexDefinitions()
Can a catalog name be used in an index definition statement. |
boolean |
supportsCatalogsInPrivilegeDefinitions()
Can a catalog name be used in a privilege definition statement. |
boolean |
supportsCatalogsInProcedureCalls()
Can a catalog name be used in a procedure call statement. |
boolean |
supportsCatalogsInTableDefinitions()
Can a catalog name be used in a table definition statement. |
boolean |
supportsColumnAliasing()
Is column aliasing supported. |
boolean |
supportsConvert()
Is the CONVERT function between SQL types supported. |
boolean |
supportsConvert(int fromType,
int toType)
Is CONVERT between the given SQL types supported. |
boolean |
supportsCoreSQLGrammar()
Is the ODBC Core SQL grammar supported. |
boolean |
supportsCorrelatedSubqueries()
Are correlated subqueries supported. |
boolean |
supportsDataDefinitionAndDataManipulationTransactions()
Are both data definition and data manipulation statements within a transaction supported. |
boolean |
supportsDataManipulationTransactionsOnly()
Are only data manipulation statements within a transaction supported. |
boolean |
supportsDifferentTableCorrelationNames()
If table correlation names are supported, are they restricted to be different from the names of the tables. |
boolean |
supportsExpressionsInOrderBy()
Are expressions in "ORDER BY" lists supported. |
boolean |
supportsExtendedSQLGrammar()
Is the ODBC Extended SQL grammar supported. |
boolean |
supportsFullOuterJoins()
Are full nested outer joins supported. |
boolean |
supportsGroupBy()
Is some form of "GROUP BY" clause supported. |
boolean |
supportsGroupByBeyondSelect()
Can a "GROUP BY" clause add columns not in the SELECT provided it specifies all the columns in the SELECT. |
boolean |
supportsGroupByUnrelated()
Can a "GROUP BY" clause use columns not in the SELECT. |
boolean |
supportsIntegrityEnhancementFacility()
Is the SQL Integrity Enhancement Facility supported. |
boolean |
supportsLikeEscapeClause()
Is the escape character in "LIKE" clauses supported. |
boolean |
supportsLimitedOuterJoins()
Is there limited support for outer joins. |
boolean |
supportsMinimumSQLGrammar()
Is the ODBC Minimum SQL grammar supported. |
boolean |
supportsMixedCaseIdentifiers()
Does the database treat mixed case unquoted SQL identifiers as case sensitive and as a result store them in mixed case. |
boolean |
supportsMixedCaseQuotedIdentifiers()
Does the database treat mixed case quoted SQL identifiers as case sensitive and as a result store them in mixed case. |
boolean |
supportsMultipleResultSets()
Are multiple ResultSets from a single execute supported. |
boolean |
supportsMultipleTransactions()
Can we have multiple transactions open at once (on different connections). |
boolean |
supportsNonNullableColumns()
Can columns be defined as non-nullable. |
boolean |
supportsOpenCursorsAcrossCommit()
Can cursors remain open across commits. |
boolean |
supportsOpenCursorsAcrossRollback()
Can cursors remain open across rollbacks. |
boolean |
supportsOpenStatementsAcrossCommit()
Can statements remain open across commits. |
boolean |
supportsOpenStatementsAcrossRollback()
Can statements remain open across rollbacks. |
boolean |
supportsOrderByUnrelated()
Can an "ORDER BY" clause use columns not in the SELECT. |
boolean |
supportsOuterJoins()
Is some form of outer join supported. |
boolean |
supportsPositionedDelete()
Is positioned DELETE supported. |
boolean |
supportsPositionedUpdate()
Is positioned UPDATE supported. |
boolean |
supportsResultSetConcurrency(int type,
int concurrency)
Does the database support the concurrency type in combination with the given result set type. |
boolean |
supportsResultSetType(int type)
Does the database support the given result set type. |
boolean |
supportsSchemasInDataManipulation()
Can a schema name be used in a data manipulation statement. |
boolean |
supportsSchemasInIndexDefinitions()
Can a schema name be used in an index definition statement. |
boolean |
supportsSchemasInPrivilegeDefinitions()
Can a schema name be used in a privilege definition statement. |
boolean |
supportsSchemasInProcedureCalls()
Can a schema name be used in a procedure call statement. |
boolean |
supportsSchemasInTableDefinitions()
Can a schema name be used in a table definition statement. |
boolean |
supportsSelectForUpdate()
Is SELECT for UPDATE supported. |
boolean |
supportsStoredProcedures()
Are stored procedure calls using the stored procedure escape syntax supported. |
boolean |
supportsSubqueriesInComparisons()
Are subqueries in comparison expressions supported. |
boolean |
supportsSubqueriesInExists()
Are subqueries in 'exists' expressions supported. |
boolean |
supportsSubqueriesInIns()
Are subqueries in 'in' statements supported. |
boolean |
supportsSubqueriesInQuantifieds()
Are subqueries in quantified expressions supported. |
boolean |
supportsTableCorrelationNames()
Are table correlation names supported. |
boolean |
supportsTransactionIsolationLevel(int level)
Does the database support the given transaction isolation level. |
boolean |
supportsTransactions()
Are transactions supported. |
boolean |
supportsUnion()
Is SQL UNION supported. |
boolean |
supportsUnionAll()
Is SQL UNION ALL supported. |
boolean |
updatesAreDetected(int type)
Determine whether or not a visible row update can be detected by calling ResultSet.rowUpdated(). |
boolean |
usesLocalFilePerTable()
Does the database use a file for each table. |
boolean |
usesLocalFiles()
Does the database store tables in a local file. |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Field Detail |
public static final int procedureResultUnknown
public static final int procedureNoResult
public static final int procedureReturnsResult
public static final int procedureColumnUnknown
public static final int procedureColumnIn
public static final int procedureColumnInOut
public static final int procedureColumnOut
public static final int procedureColumnReturn
public static final int procedureColumnResult
public static final int procedureNoNulls
public static final int procedureNullable
public static final int procedureNullableUnknown
public static final int columnNoNulls
public static final int columnNullable
public static final int columnNullableUnknown
public static final int bestRowTemporary
public static final int bestRowTransaction
public static final int bestRowSession
public static final int bestRowUnknown
public static final int bestRowNotPseudo
public static final int bestRowPseudo
public static final int versionColumnUnknown
public static final int versionColumnNotPseudo
public static final int versionColumnPseudo
public static final int importedKeyCascade
public static final int importedKeyRestrict
public static final int importedKeySetNull
public static final int importedKeyNoAction
public static final int importedKeySetDefault
public static final int importedKeyInitiallyDeferred
public static final int importedKeyInitiallyImmediate
public static final int importedKeyNotDeferrable
public static final int typeNoNulls
public static final int typeNullable
public static final int typeNullableUnknown
public static final int typePredNone
public static final int typePredChar
public static final int typePredBasic
public static final int typeSearchable
public static final short tableIndexStatistic
public static final short tableIndexClustered
public static final short tableIndexHashed
public static final short tableIndexOther
Method Detail |
public boolean allProceduresAreCallable() throws SQLException
InterClient note: This is always true for sysdba.
public boolean allTablesAreSelectable() throws SQLException
InterClient note: This is always true for sysdba.
public String getURL() throws SQLException
InterClient note: For InterBase this is something like "jdbc:interbase://host_name//databases/employee.gdb" or "jdbc:interbase://host_name/d:/databases/employee.gdb" for a database on server host_name. InterServer and InterBase may reside on separate tiers; If the interserver process is running on a server named interserver_host and the database resides on a server named database_host, then the url is something like
jdbc:interbase://interserver_host/database_host:/databases/employee.gdb
public String getUserName() throws SQLException
public boolean isReadOnly() throws SQLException
public boolean nullsAreSortedHigh() throws SQLException
InterClient note: Returns false for InterBase.
public boolean nullsAreSortedLow() throws SQLException
InterClient note: Returns true for InterBase.
public boolean nullsAreSortedAtStart() throws SQLException
InterClient note: Returns false for InterBase.
public boolean nullsAreSortedAtEnd() throws SQLException
InterClient note: Returns false for InterBase.
public String getDatabaseProductName() throws SQLException
InterClient note: Returns "InterBase" usually, but may be locale dependent.
public String getDatabaseProductVersion() throws SQLException
InterClient note: Returns something like "SO-V4.0B" for an InterBase 4.0B server on Solaris.
public String getDriverName() throws SQLException
InterClient note: Returns "InterClient"
getServerName()
public String getDriverVersion() throws SQLException
InterClient note: This returns something like "1.50.36 Beta" for beta versions, and something like "1.50.37" for product versions, where 1 is the major version, 50 is the minor version, and 37 is the build number.
getServerVersion()
public int getDriverMajorVersion()
Driver.getMajorVersion()
,
getServerMajorVersion()
public int getDriverMinorVersion()
Driver.getMinorVersion()
,
getServerMinorVersion()
public boolean usesLocalFiles() throws SQLException
InterClient note: Returns true for InterBase. InterBase databases are stored in .gdb files.
public boolean usesLocalFilePerTable() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsMixedCaseIdentifiers() throws SQLException
Compliance note: must return false.
InterClient note: Returns false for InterBase.
public boolean storesUpperCaseIdentifiers() throws SQLException
InterClient note: Returns true for InterBase.
public boolean storesLowerCaseIdentifiers() throws SQLException
InterClient note: Returns false for InterBase.
public boolean storesMixedCaseIdentifiers() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsMixedCaseQuotedIdentifiers() throws SQLException
Compliance note: must return true.
InterClient note: Returns false for InterBase. InterBase 5 does not support quoted SQL identifiers.
public boolean storesUpperCaseQuotedIdentifiers() throws SQLException
InterClient note: Returns false for InterBase. InterBase 5 does not support quoted SQL identifiers.
public boolean storesLowerCaseQuotedIdentifiers() throws SQLException
InterClient note: Returns false for InterBase. InterBase 5 does not support quoted SQL identifiers.
public boolean storesMixedCaseQuotedIdentifiers() throws SQLException
InterClient note: Returns false for InterBase. InterBase 5 does not support quoted SQL identifiers.
public String getIdentifierQuoteString() throws SQLException
Compliance note: must return the double quote character.
InterClient note: Returns " " for InterBase 4 and 5. InterBase 4 and 5 do not support quoted SQL identifiers.
public String getSQLKeywords() throws SQLException
public String getNumericFunctions() throws SQLException
InterClient note: Returns "" for InterBase. InterBase supports user-defined functions (UDFs) rather than relying on built-in functions.
getUDFs()
public String getStringFunctions() throws SQLException
InterClient note: Returns "" for InterBase. InterBase supports user-defined functions (UDFs) rather than relying on built-in functions.
getUDFs()
public String getSystemFunctions() throws SQLException
InterClient note: Returns "" for InterBase. InterBase supports user-defined functions (UDFs) rather than relying on built-in functions.
getUDFs()
public String getTimeDateFunctions() throws SQLException
InterClient note: Returns "" for InterBase. InterBase supports user-defined functions (UDFs) rather than relying on built-in functions.
getUDFs()
public String getSearchStringEscape() throws SQLException
The '_' character represents any single character.
The '%' character represents any sequence of zero or more characters.
InterClient note: Returns "\" for InterBase.
public String getExtraNameCharacters() throws SQLException
InterClient note: Returns "$" for InterBase.
public boolean supportsAlterTableWithAddColumn() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsAlterTableWithDropColumn() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsColumnAliasing() throws SQLException
If so, the SQL AS clause can be used to provide names for computed columns or to provide alias names for columns as required.
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean nullPlusNonNullIsNull() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsConvert() throws SQLException
InterClient note: Returns false for InterBase. InterBase supports this function using the CAST operator.
public boolean supportsConvert(int fromType, int toType) throws SQLException
InterClient note: Returns false for InterBase. InterBase supports this function using the CAST operator.
fromType
- the type to convert fromtoType
- the type to convert tojava.sql.Types
public boolean supportsTableCorrelationNames() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsDifferentTableCorrelationNames() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsExpressionsInOrderBy() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsOrderByUnrelated() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsGroupBy() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsGroupByUnrelated() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsGroupByBeyondSelect() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsLikeEscapeClause() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsMultipleResultSets() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsMultipleTransactions() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsNonNullableColumns() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsMinimumSQLGrammar() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsCoreSQLGrammar() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsExtendedSQLGrammar() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsANSI92EntryLevelSQL() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsANSI92IntermediateSQL() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsANSI92FullSQL() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsIntegrityEnhancementFacility() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsOuterJoins() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsFullOuterJoins() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsLimitedOuterJoins() throws SQLException
InterClient note: Returns true for InterBase.
public String getSchemaTerm() throws SQLException
InterClient note: Throws a DriverNotCapableException. InterBase does not support schemas.
public String getProcedureTerm() throws SQLException
InterClient note: Returns "PROCEDURE" for InterBase.
public String getCatalogTerm() throws SQLException
InterClient note: Throws a DriverNotCapableException. InterBase does not support catalogs.
public boolean isCatalogAtStart() throws SQLException
InterClient note: Throws a DriverNotCapableException. InterBase does not support catalogs.
public String getCatalogSeparator() throws SQLException
InterClient note: Always returns "". InterBase does not support catalogs.
public boolean supportsSchemasInDataManipulation() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support schemas.
public boolean supportsSchemasInProcedureCalls() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support schemas.
public boolean supportsSchemasInTableDefinitions() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support schemas.
public boolean supportsSchemasInIndexDefinitions() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support schemas.
public boolean supportsSchemasInPrivilegeDefinitions() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support schemas.
public boolean supportsCatalogsInDataManipulation() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support catalogs.
public boolean supportsCatalogsInProcedureCalls() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support catalogs.
public boolean supportsCatalogsInTableDefinitions() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support catalogs.
public boolean supportsCatalogsInIndexDefinitions() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support catalogs.
public boolean supportsCatalogsInPrivilegeDefinitions() throws SQLException
InterClient note: Returns false for InterBase. InterBase does not support catalogs.
public boolean supportsPositionedDelete() throws SQLException
InterClient note: Returns true for InterBase/InterClient.
public boolean supportsPositionedUpdate() throws SQLException
InterClient note: Returns true for InterBase/InterClient.
public boolean supportsSelectForUpdate() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsStoredProcedures() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsSubqueriesInComparisons() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsSubqueriesInExists() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsSubqueriesInIns() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsSubqueriesInQuantifieds() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsCorrelatedSubqueries() throws SQLException
Compliance note: must return true.
InterClient note: Returns true for InterBase.
public boolean supportsUnion() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsUnionAll() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsOpenCursorsAcrossCommit() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsOpenCursorsAcrossRollback() throws SQLException
InterClient note: Returns false for InterBase.
public boolean supportsOpenStatementsAcrossCommit() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsOpenStatementsAcrossRollback() throws SQLException
InterClient note: Returns true for InterBase.
public int getMaxBinaryLiteralLength() throws SQLException
InterClient note: Throws a DriverNotCapableException. InterBase does not support binary literals.
public int getMaxCharLiteralLength() throws SQLException
InterClient note: Returns 1,024 (1K) for InterBase.
public int getMaxColumnNameLength() throws SQLException
InterClient note: Returns 31 for InterBase.
public int getMaxColumnsInGroupBy() throws SQLException
InterClient note: Returns 16 for InterBase.
public int getMaxColumnsInIndex() throws SQLException
InterClient note: Returns 16 for InterBase.
public int getMaxColumnsInOrderBy() throws SQLException
InterClient note: Returns 16 for InterBase.
public int getMaxColumnsInSelect() throws SQLException
InterClient note: Returns 32,767 for InterBase.
public int getMaxColumnsInTable() throws SQLException
InterClient note: Returns 32,767 for InterBase.
public int getMaxConnections() throws SQLException
InterClient note: Returns 0 (unlimited) for InterBase. This depends mostly on the OS configuration (kernel, RAM, etc...). Practical limits are around 150 using NT-V4.2.
public int getMaxCursorNameLength() throws SQLException
InterClient note: Return 31 for InterBase.
public int getMaxIndexLength() throws SQLException
InterClient note: Returns 198 bytes for InterBase.
public int getMaxSchemaNameLength() throws SQLException
InterClient note: Throws a DriverNotCapableException. InterBase does not support schemas.
public int getMaxProcedureNameLength() throws SQLException
InterClient note: Returns 27 for InterBase.
public int getMaxCatalogNameLength() throws SQLException
InterClient note: Throws a DriverNotCapableException. InterBase does not support catalogs.
public int getMaxRowSize() throws SQLException
InterClient note: Returns 32,664 bytes for InterBase.
public boolean doesMaxRowSizeIncludeBlobs() throws SQLException
InterClient note: Returns false for InterBase. There's virtually no limit to the size of a blob, other than the practical limit the OS imposes on the size of a single file (eg. 2 gig on 32-bit unixes).
public int getMaxStatementLength() throws SQLException
InterClient note: Returns 640 bytes for InterBase.
public int getMaxStatements() throws SQLException
InterClient note: Returns 0 (unlimited) for InterBase.
public int getMaxTableNameLength() throws SQLException
InterClient note: Returns 31 for InterBase.
public int getMaxTablesInSelect() throws SQLException
InterClient note: Returns 16 for InterBase.
public int getMaxUserNameLength() throws SQLException
InterClient note: Returns 31 for InterBase.
public int getDefaultTransactionIsolation() throws SQLException
InterClient note: Returns Connection.TRANSACTION_SERIALIZABLE for InterBase.
Connection
public boolean supportsTransactions() throws SQLException
InterClient note: Returns true for InterBase.
public boolean supportsTransactionIsolationLevel(int level) throws SQLException
InterClient note: InterBase supports the JDBC isolation levels TRANSACTION_REPEATABLE_READ, TRANSACTION_READ_COMMITTED, and TRANSACTION_SERIALIZABLE.
In addition, InterBase's native isolation modes will be supported as extensions to the JDBC api
level
- the values are defined in interbase.interclient.ConnectionConnection
public boolean supportsDataDefinitionAndDataManipulationTransactions() throws SQLException
InterClient note: Returns true for InterBase, but DDL forces an implicit commit.
dataDefinitionCausesTransactionCommit()
public boolean supportsDataManipulationTransactionsOnly() throws SQLException
InterClient note: Returns false for InterBase.
public boolean dataDefinitionCausesTransactionCommit() throws SQLException
InterClient note: Returns true for InterClient. InterClient does not follow the ISQL transaction model. Under the ISQL transaction model, in a mixed DDL/DML transaction, the DDL is autocommitted even if you're not in autocommit mode, but the DML is not autocommitted. So if a rollback occurs, only the DML is rollbacked, hence a mixed DDL/DML transaction is not atomic. Under the InterClient transaction model for a mixed DDL/DML transaction, any DDL forces the entire transaction to commit implicitly, this includes all DML up to and including the DDL atomically.
public boolean dataDefinitionIgnoredInTransactions() throws SQLException
InterClient note: Returns false for InterBase.
public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException
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 the following columns:
InterClient note: InterClient provides an additional 9th column as PROCEDURE_OWNER. A SQLException is thrown if a catalog or schema pattern is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschemaPattern
- a schema name pattern; "" retrieves those without a schemaprocedureNamePattern
- a procedure name patterngetSearchStringEscape()
public ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern) throws SQLException
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 ResultSet 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.
InterClient note: A SQLException is thrown if a catalog or schema pattern is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschemaPattern
- a schema name pattern; "" retrieves those without a schemaprocedureNamePattern
- a procedure name patterncolumnNamePattern
- a column name patterngetSearchStringEscape()
public ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) throws SQLException
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.
InterClient note: InterClient provides an additional 6th column as TABLE_OWNER. A SQLException is thrown if a catalog or schema pattern is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschemaPattern
- a schema name pattern; "" retrieves those
without a schematableNamePattern
- a table name patterntypes
- a list of table types to include; null returns all typesgetSearchStringEscape()
public ResultSet getSchemas() throws SQLException
The schema column is:
InterClient note: Throws a DriverNotCapableException. InterBase does not support schemas.
public ResultSet getCatalogs() throws SQLException
The catalog column is:
InterClient note: Throws a DriverNotCapableException. InterBase does not support catalogs.
public ResultSet getTableTypes() throws SQLException
The table type is:
public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException
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:
InterClient note: A SQLException is thrown if a catalog or schema pattern is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschemaPattern
- a schema name pattern; "" retrieves those
without a schematableNamePattern
- a table name patterncolumnNamePattern
- a column name patterngetSearchStringEscape()
public ResultSet getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) throws SQLException
Only privileges matching the column name criteria are returned. They are ordered by COLUMN_NAME and PRIVILEGE.
Each privilige description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those without a schematable
- a table namecolumnNamePattern
- a column name patterngetSearchStringEscape()
public ResultSet getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern) throws SQLException
Only privileges matching the schema and table name criteria are returned. They are ordered by TABLE_SCHEM, TABLE_NAME, and PRIVILEGE.
Each privilige description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema pattern is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschemaPattern
- a schema name pattern; "" retrieves those
without a schematableNamePattern
- a table name patterngetSearchStringEscape()
public ResultSet getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) throws SQLException
Each column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those without a schematable
- a table namescope
- the scope of interest; use same values as SCOPEnullable
- include columns that are nullable?public ResultSet getVersionColumns(String catalog, String schema, String table) throws SQLException
Each column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those without a schematable
- a table namepublic ResultSet getPrimaryKeys(String catalog, String schema, String table) throws SQLException
Each primary key column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those without a schematable
- a table namepublic ResultSet getImportedKeys(String catalog, String schema, String table) throws SQLException
Each primary key column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those
without a schematable
- a table namegetExportedKeys(java.lang.String, java.lang.String, java.lang.String)
public ResultSet getExportedKeys(String catalog, String schema, String table) throws SQLException
Each foreign key column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those without a schematable
- a table namegetImportedKeys(java.lang.String, java.lang.String, java.lang.String)
public ResultSet getCrossReference(String primaryCatalog, String primarySchema, String primaryTable, String foreignCatalog, String foreignSchema, String foreignTable) throws SQLException
Each foreign key column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
primaryCatalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaprimarySchema
- a schema name; "" retrieves those
without a schemaprimaryTable
- the table name that exports the keyforeignCatalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaforeignSchema
- a schema name; "" retrieves those
without a schemaforeignTable
- the table name that imports the keygetImportedKeys(java.lang.String, java.lang.String, java.lang.String)
public ResultSet getTypeInfo() throws SQLException
Each type description has the following columns:
public ResultSet getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) throws SQLException
Each index column description has the following columns:
InterClient note: A SQLException is thrown if a catalog or schema is given.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschema
- a schema name; "" retrieves those without a schematable
- a table nameunique
- when true, return only indices for unique values;
when false, return indices regardless of whether unique or notapproximate
- when true, result is allowed to reflect approximate
or out of data values; when false, results are requested to be
accuratepublic boolean supportsResultSetType(int type) throws SQLException
type
- defined in java.sql.ResultSetConnection
public boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException
type
- defined in java.sql.ResultSetconcurrency
- type defined in java.sql.ResultSetConnection
public boolean ownUpdatesAreVisible(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean ownDeletesAreVisible(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean ownInsertsAreVisible(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean othersUpdatesAreVisible(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean othersDeletesAreVisible(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean othersInsertsAreVisible(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean updatesAreDetected(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean deletesAreDetected(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean insertsAreDetected(int type) throws SQLException
result
- set type, i.e. ResultSet.TYPE_XXXpublic boolean supportsBatchUpdates() throws SQLException
public ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) throws SQLException
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 then an empty result set is returned.
catalog
- a catalog name; "" retrieves those without a
catalog; null means drop catalog name from the selection criteriaschemaPattern
- a schema name pattern; "" retrieves those
without a schematypeNamePattern
- a type name pattern; may be a fully qualified
nametypes
- a list of user-named types to include (JAVA_OBJECT,
STRUCT, or DISTINCT); null returns all typespublic Connection getConnection() throws SQLException
public String getUDFs() throws SQLException
public String getServerName() throws SQLException
getDriverName()
public String getServerVersion() throws SQLException
getDriverVersion()
public int getServerMajorVersion() throws SQLException
getDriverMajorVersion()
,
Server.getMajorVersion()
public int getServerMinorVersion() throws SQLException
getDriverMinorVersion()
,
Server.getMinorVersion()
public int getServerJDBCNetProtocolVersion() throws SQLException
getDriverJDBCNetProtocolVersion()
,
Server.getJDBCNetProtocolVersion()
public int getDriverJDBCNetProtocolVersion()
getServerJDBCNetProtocolVersion()
,
Driver.getJDBCNetProtocolVersion()
public Date getServerExpirationDate() throws SQLException
getDriverExpirationDate()
,
Server.getExpirationDate()
public Date getDriverExpirationDate()
getServerExpirationDate()
,
Driver.getExpirationDate()
public int getServerPort() throws SQLException
Server.getPort()
public int getDatabaseMajorVersion() throws SQLException
public int getODSMajorVersion() throws SQLException
public int getODSMinorVersion() throws SQLException
public int getPageSize() throws SQLException
public int getPageAllocation() throws SQLException
public boolean getSweepInterval() throws SQLException
public boolean isSpaceReservedForVersioning() throws SQLException
ConnectionProperties.reserveNoSpaceForVersioning(boolean)
public boolean isSynchronous() throws SQLException
ConnectionProperties.allowAsynchronousDiskWrites(boolean)
public int getCacheBuffers() throws SQLException
ConnectionProperties.setCacheBuffers(int)
,
Server.getCacheBuffers(java.lang.String)
,
Server.getDefaultCacheBuffers()
|
1.50.39 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |