|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface DatabaseMetaData
关于数据库的整体综合信息。
此接口由驱动程序供应商实现,让用户了解 Database Management System (DBMS) 在与驱动程序(基于与其一起使用的 JDBCTM 技术(“JDBC 驱动程序”))相结合时的能力。不同的关系 DBMS 常常支持不同的功能,以不同方式实现这些功能,并使用不同的数据类型。此外,驱动程序可以实现 DBMS 提供的顶级功能。此接口中的方法返回的信息关系到一起工作的特定驱动程序和特定 DBMS 的能力。注意,正如此文档中所使用的那样,术语“数据库”通常既指驱动程序,又指 DBMS。
此接口的用户通常是一个需要发现如何处理基础 DBMS 的工具。对于试图与多个 DBMS 一起使用的应用程序而言尤其如此。例如,一个工具可能使用 getTypeInfo
方法找出可以在 CREATE TABLE
语句中使用的数据类型。或者用户可能调用 supportsCorrelatedSubqueries
方法查看是否可以使用相关子查询,或者调用 supportsBatchUpdates
查看是否可以使用批量更新。
有些 DatabaseMetaData
方法以 ResultSet
对象的形式返回信息列表。常规 ResultSet
方法,比如 getString
和 getInt
,可用于从这些 ResultSet
对象中检索数据。如果给定形式的元数据不可用,则 ResultSet
获取方法抛出 SQLException
。
有些 DatabaseMetaData
方法使用 String 模式的参数。这些参数都有 fooPattern 这样的名称。在模式 String 中,"%" 表示匹配 0 个或多个字符的任何子字符串,"_" 表示匹配任何一个字符。仅返回匹配搜索模式的元数据项。如果将搜索模式参数设置为 null
,则从搜索中删除参数标准。
获得关于驱动程序不支持功能的信息的方法将抛出 SQLException
。在这些方法返回 ResultSet
对象的情况下,要么返回一个 ResultSet
对象(可能为空),要么抛出 SQLException
。
字段摘要 | |
---|---|
static short |
attributeNoNulls
指示可能不允许使用 NULL 值。 |
static short |
attributeNullable
指示明确允许使用 NULL 值。 |
static short |
attributeNullableUnknown
指示不知道是否允许使用 NULL 值。 |
static int |
bestRowNotPseudo
指示最佳行标识符“不”是伪列。 |
static int |
bestRowPseudo
指示最佳行标识符是伪列。 |
static int |
bestRowSession
指示最佳行标识符的作用域是当前会话的剩余部分。 |
static int |
bestRowTemporary
指示最佳行标识符的作用域是临时的,仅在使用该行时可用。 |
static int |
bestRowTransaction
指示最佳行标识符的作用域是当前事务的剩余部分。 |
static int |
bestRowUnknown
指示最佳行标识符可能是伪列 (pseudo column),也可能不是。 |
static int |
columnNoNulls
指示列中可能不允许使用 NULL 值。 |
static int |
columnNullable
指示列中明确允许使用 NULL 值。 |
static int |
columnNullableUnknown
指示不知道列是否可为 null。 |
static int |
importedKeyCascade
对于 UPDATE_RULE 列,指示在更新主键时,外键(导入的键)的更改要与之一致。 |
static int |
importedKeyInitiallyDeferred
指示可延迟性。 |
static int |
importedKeyInitiallyImmediate
指示可延迟性。 |
static int |
importedKeyNoAction
对于 UPDATE_RULE 和 DELETE_RULE 列,指示如果主键已导入,则无法更新或删除它。 |
static int |
importedKeyNotDeferrable
指示可延迟性。 |
static int |
importedKeyRestrict
对于 UPDATE_RULE 列,指示如果主键已被另一个表作为外键导入,则可能不更新该主键。 |
static int |
importedKeySetDefault
对于 UPDATE_RULE 和 DELETE_RULE 列,指示如果更新或删除了主键,则将外键(导入的键)设置为默认值。 |
static int |
importedKeySetNull
对于 UPDATE_RULE 和 DELETE_RULE 列,指示在更新或删除主键时,将外键(导入的键)更改为 NULL 。 |
static int |
procedureColumnIn
指示列中存储了 IN 参数。 |
static int |
procedureColumnInOut
指示列中存储了 INOUT 参数。 |
static int |
procedureColumnOut
指示列中存储了 OUT 参数。 |
static int |
procedureColumnResult
指示列中存储了结果。 |
static int |
procedureColumnReturn
指示列中存储了返回值。 |
static int |
procedureColumnUnknown
指示列的类型为未知。 |
static int |
procedureNoNulls
指示不允许使用 NULL 值。 |
static int |
procedureNoResult
指示过程不返回结果。 |
static int |
procedureNullable
指示允许使用 NULL 值。 |
static int |
procedureNullableUnknown
指示不知道是否允许使用 NULL 值。 |
static int |
procedureResultUnknown
指示不知道过程是否返回结果。 |
static int |
procedureReturnsResult
指示过程返回结果。 |
static int |
sqlStateSQL99
指示该值是一个 SQL99 SQLSTATE 值。 |
static int |
sqlStateXOpen
指示该值是一个 X/Open(现在视为 Open Group)SQL CLI SQLSTATE 值。 |
static short |
tableIndexClustered
指示此表索引是一个集群索引 (clustered index)。 |
static short |
tableIndexHashed
指示此表索引是一个散列索引。 |
static short |
tableIndexOther
指示此表索引不是集群索引、散列索引或表统计信息,它是其他某种东西。 |
static short |
tableIndexStatistic
指示此列包含与表的索引描述一起返回的表统计信息。 |
static int |
typeNoNulls
指示“不”允许对这种数据类型使用 NULL 值。 |
static int |
typeNullable
指示允许对这种数据类型使用 NULL 值。 |
static int |
typeNullableUnknown
指示不知道是否允许对这种数据类型使用 NULL 值。 |
static int |
typePredBasic
指示可以在此数据类型上建立除 WHERE . . . LIKE 以外的所有 WHERE 搜索子句。 |
static int |
typePredChar
指示可以建立在此类型上的 WHERE 搜索子句只有 WHERE . . . LIKE 。 |
static int |
typePredNone
指示不支持将 WHERE 搜索子句用于这种类型。 |
static int |
typeSearchable
指示在此类型上可以建立所有 WHERE 搜索子句。 |
static int |
versionColumnNotPseudo
指示这种版本的列“不”是伪列。 |
static int |
versionColumnPseudo
指示这种版本的列是伪列。 |
static int |
versionColumnUnknown
指示这种版本的列可能是伪列,也可能不是。 |
方法摘要 | |
---|---|
boolean |
allProceduresAreCallable()
检索当前用户是否可以调用 getProcedures 方法返回的所有过程。 |
boolean |
allTablesAreSelectable()
检索当前用户是否可以使用 SELECT 语句中的 getTables 方法返回的所有表。 |
boolean |
dataDefinitionCausesTransactionCommit()
检索事务中的数据定义语句是否强迫该事务进行提交。 |
boolean |
dataDefinitionIgnoredInTransactions()
检索此数据库是否忽略事务中的数据定义语句。 |
boolean |
deletesAreDetected(int type)
检索是否可以通过调用 ResultSet.rowDeleted 方法检测可见行的删除。 |
boolean |
doesMaxRowSizeIncludeBlobs()
检索 getMaxRowSize 方法的返回值是否包括 SQL 数据类型 LONGVARCHAR 和 LONGVARBINARY 。 |
ResultSet |
getAttributes(String catalog,
String schemaPattern,
String typeNamePattern,
String attributeNamePattern)
检索可在给定模式和类别中使用的用户定义类型 (UDT) 的给定类型的给定属性的描述。 |
ResultSet |
getBestRowIdentifier(String catalog,
String schema,
String table,
int scope,
boolean nullable)
检索惟一标识行的表的最佳列集合的描述。 |
ResultSet |
getCatalogs()
检索可在此数据库中使用的类别名称。 |
String |
getCatalogSeparator()
检索此数据库用作类别和表名之间的分隔符的 String 。 |
String |
getCatalogTerm()
检索数据库供应商用于 "catalog" 的首选术语。 |
ResultSet |
getColumnPrivileges(String catalog,
String schema,
String table,
String columnNamePattern)
检索用于表列的访问权的描述。 |
ResultSet |
getColumns(String catalog,
String schemaPattern,
String tableNamePattern,
String columnNamePattern)
检索可在指定类别中使用的表列的描述。 |
Connection |
getConnection()
检索此元数据对象所产生的连接。 |
ResultSet |
getCrossReference(String primaryCatalog,
String primarySchema,
String primaryTable,
String foreignCatalog,
String foreignSchema,
String foreignTable)
检索引用给定主键表的主键列的给定外键中外键列的描述(描述一个表如何导入另一个表的键)。 |
int |
getDatabaseMajorVersion()
检索底层数据库的主版本号。 |
int |
getDatabaseMinorVersion()
底层数据库的次版本号。 |
String |
getDatabaseProductName()
检索此数据库产品的名称。 |
String |
getDatabaseProductVersion()
检索此数据库产品的版本号。 |
int |
getDefaultTransactionIsolation()
检索此数据库的默认事务隔离级别。 |
int |
getDriverMajorVersion()
检索此 JDBC 驱动程序的主版本号。 |
int |
getDriverMinorVersion()
检索此 JDBC 驱动程序的次版本号。 |
String |
getDriverName()
检索此 JDBC 驱动程序的名称。 |
String |
getDriverVersion()
检索此 JDBC 驱动程序的 String 形式的版本号。 |
ResultSet |
getExportedKeys(String catalog,
String schema,
String table)
检索引用给定表的主键列(表导入的外键)的外键列的描述。 |
String |
getExtraNameCharacters()
检索可以在不带引号的标识符名称中使用的所有“额外”字符(除了 a-z、A-Z、0-9 和 _ 以外的字符)。 |
String |
getIdentifierQuoteString()
检索用于引用 SQL 标识符的字符串。 |
ResultSet |
getImportedKeys(String catalog,
String schema,
String table)
检索由表的外键列(表导入的主键)引用的主键列的描述。 |
ResultSet |
getIndexInfo(String catalog,
String schema,
String table,
boolean unique,
boolean approximate)
检索给定表的索引和统计信息的描述。 |
int |
getJDBCMajorVersion()
检索此驱动程序的主 JDBC 版本号。 |
int |
getJDBCMinorVersion()
检索此驱动程序的次 JDBC 版本号。 |
int |
getMaxBinaryLiteralLength()
检索此数据库允许在内嵌二进制字面值中使用的最大十六进制字符数。 |
int |
getMaxCatalogNameLength()
检索此数据库允许用于类别名称的最大字符数。 |
int |
getMaxCharLiteralLength()
检索此数据库允许用于字符字面值的最大字符数。 |
int |
getMaxColumnNameLength()
检索此数据库允许用于列名称的最大字符数。 |
int |
getMaxColumnsInGroupBy()
检索此数据库允许在 GROUP BY 子句中使用的最大列数。 |
int |
getMaxColumnsInIndex()
检索此数据库允许在索引中使用的最大列数。 |
int |
getMaxColumnsInOrderBy()
检索此数据库允许在 ORDER BY 子句中使用的最大列数。 |
int |
getMaxColumnsInSelect()
检索此数据库允许在 SELECT 列表中使用的最大列数。 |
int |
getMaxColumnsInTable()
检索此数据库允许在表中使用的最大列数。 |
int |
getMaxConnections()
检索连接到此数据库的并发连接的可能最大数。 |
int |
getMaxCursorNameLength()
检索此数据库允许用于游标名称的最大字符数。 |
int |
getMaxIndexLength()
检索此数据库允许用于索引(包括索引的所有部分)的最大字节数。 |
int |
getMaxProcedureNameLength()
检索此数据库允许用于过程名称的最大字符数。 |
int |
getMaxRowSize()
检索此数据库允许在单行中使用的最大字节数。 |
int |
getMaxSchemaNameLength()
检索此数据库允许在模式名称中使用的最大字符数。 |
int |
getMaxStatementLength()
检索此数据库允许在 SQL 语句中使用的最大字符数。 |
int |
getMaxStatements()
检索在此数据库中在同一时间内可处于开放状态的最大活动语句数。 |
int |
getMaxTableNameLength()
检索此数据库允许在表名称中使用的最大字符数。 |
int |
getMaxTablesInSelect()
检索此数据库允许在 SELECT 语句中使用的表的最大数量。 |
int |
getMaxUserNameLength()
检索此数据库允许在用户名称中使用的最大字符数。 |
String |
getNumericFunctions()
检索可用于此数据库的数学函数的逗号分隔列表。 |
ResultSet |
getPrimaryKeys(String catalog,
String schema,
String table)
检索对给定表的主键列的描述。 |
ResultSet |
getProcedureColumns(String catalog,
String schemaPattern,
String procedureNamePattern,
String columnNamePattern)
检索给定类别的存储过程参数和结果列的描述。 |
ResultSet |
getProcedures(String catalog,
String schemaPattern,
String procedureNamePattern)
检索可在给定类别中使用的存储过程的描述。 |
String |
getProcedureTerm()
检索数据库供应商用于 "procedure" 的首选术语。 |
int |
getResultSetHoldability()
检索此 ResultSet 对象的默认可保存性。 |
ResultSet |
getSchemas()
检索可在此数据库中使用的模式名称。 |
String |
getSchemaTerm()
检索数据库供应商用于 "schema" 的首选术语。 |
String |
getSearchStringEscape()
检索可用于转义通配符的字符串。 |
String |
getSQLKeywords()
检索此数据库的还“不”是 SQL92 关键字的所有 SQL 关键字的逗号分隔列表。 |
int |
getSQLStateType()
指示由 SQLException.getSQLState 返回的 SQLSTATE 是 X/Open(现在称为 Open Group)SQL CLI 还是 SQL99。 |
String |
getStringFunctions()
检索可用于此数据库的字符串函数的逗号分隔列表。 |
ResultSet |
getSuperTables(String catalog,
String schemaPattern,
String tableNamePattern)
检索在此数据库的特定模式中定义的表分层结构的描述。 |
ResultSet |
getSuperTypes(String catalog,
String schemaPattern,
String typeNamePattern)
检索在此数据库的特定模式中定义的用户定义类型 (UDT) 分层结构的描述。 |
String |
getSystemFunctions()
检索可用于此数据库的系统函数的逗号分隔列表。 |
ResultSet |
getTablePrivileges(String catalog,
String schemaPattern,
String tableNamePattern)
检索可在类别中使用的每个表的访问权的描述。 |
ResultSet |
getTables(String catalog,
String schemaPattern,
String tableNamePattern,
String[] types)
检索可在给定类别中使用的表的描述。 |
ResultSet |
getTableTypes()
检索可在此数据库中使用的表类型。 |
String |
getTimeDateFunctions()
检索可用于此数据库的时间和日期函数的逗号分隔列表。 |
ResultSet |
getTypeInfo()
检索此数据库支持的所有标准 SQL 类型的描述。 |
ResultSet |
getUDTs(String catalog,
String schemaPattern,
String typeNamePattern,
int[] types)
检索在特定模式中定义的用户定义类型 (UDT) 的描述。 |
String |
getURL()
检索此 DBMS 的 URL。 |
String |
getUserName()
检索此数据库的已知的用户名称。 |
ResultSet |
getVersionColumns(String catalog,
String schema,
String table)
检索在更新行中的任意值时自动更新的表列的描述。 |
boolean |
insertsAreDetected(int type)
检索是否可以通过调用 ResultSet.rowInserted 方法检测可见行的插入。 |
boolean |
isCatalogAtStart()
检索某个类别是否出现在完全限定表名的开头。 |
boolean |
isReadOnly()
检索此数据库是否处于只读模式。 |
boolean |
locatorsUpdateCopy()
指示对 LOB 的更新是在副本上进行还是直接更新到 LOB。 |
boolean |
nullPlusNonNullIsNull()
检索此数据库是否支持 NULL 值与等于 NULL 的非 NULL 值之间的连接。 |
boolean |
nullsAreSortedAtEnd()
检索 NULL 值是否始终排在末尾,不管排序顺序如何。 |
boolean |
nullsAreSortedAtStart()
检索 NULL 值是否始终排在开头,不管排序顺序如何。 |
boolean |
nullsAreSortedHigh()
检索 NULL 值是否被高排序。 |
boolean |
nullsAreSortedLow()
检索 NULL 值是否被低排序。 |
boolean |
othersDeletesAreVisible(int type)
检索由其他结果集类型进行的删除是否可见。 |
boolean |
othersInsertsAreVisible(int type)
检索由其他结果集类型进行的插入是否可见。 |
boolean |
othersUpdatesAreVisible(int type)
检索由其他结果集类型进行的更新是否可见。 |
boolean |
ownDeletesAreVisible(int type)
检索结果集自身的删除是否可见。 |
boolean |
ownInsertsAreVisible(int type)
检索结果集自身的插入是否可见。 |
boolean |
ownUpdatesAreVisible(int type)
检索对于给定类型的 ResultSet 对象,结果集自身的更新是否可见。 |
boolean |
storesLowerCaseIdentifiers()
检索此数据库是否将大小写混写的不带引号的 SQL 标识符作为不区分大小写的形式处理,并以小写形式存储它们。 |
boolean |
storesLowerCaseQuotedIdentifiers()
检索此数据库是否将大小写混写的带引号的 SQL 标识符作为不区分大小写的形式处理,并以小写形式存储它们。 |
boolean |
storesMixedCaseIdentifiers()
检索此数据库是否将大小写混写的不带引号的 SQL 标识符作为不区分大小写的形式处理,并以大小写混合形式存储它们。 |
boolean |
storesMixedCaseQuotedIdentifiers()
检索此数据库是否将大小写混写的带引号的 SQL 标识符作为不区分大小写的形式处理,并以大小写混合形式存储它们。 |
boolean |
storesUpperCaseIdentifiers()
检索此数据库是否将大小写混写的不带引号的 SQL 标识符作为不区分大小写的形式处理,并以大写形式存储它们。 |
boolean |
storesUpperCaseQuotedIdentifiers()
检索此数据库是否将大小写混写的带引号的 SQL 标识符作为不区分大小写的形式处理,并以大写形式存储它们。 |
boolean |
supportsAlterTableWithAddColumn()
检索此数据库是否支持带有 add 列的 ALTER TABLE 。 |
boolean |
supportsAlterTableWithDropColumn()
检索此数据库是否支持带有 drop 列的 ALTER TABLE 。 |
boolean |
supportsANSI92EntryLevelSQL()
检索此数据库是否支持 ANSI92 入门级 SQL 语法。 |
boolean |
supportsANSI92FullSQL()
检索此数据库是否支持受支持的 ANSI92 完全 SQL 语法。 |
boolean |
supportsANSI92IntermediateSQL()
检索此数据库是否支持受支持的 ANSI92 中间 SQL 语法。 |
boolean |
supportsBatchUpdates()
检索此数据库是否支持批量更新。 |
boolean |
supportsCatalogsInDataManipulation()
检索某个类别名称是否可以在数据操作语句中使用。 |
boolean |
supportsCatalogsInIndexDefinitions()
检索某个类别名称是否可以在检索定义语句中使用。 |
boolean |
supportsCatalogsInPrivilegeDefinitions()
检索某个类别名称是否可以在特权定义语句中使用。 |
boolean |
supportsCatalogsInProcedureCalls()
检索某个类别名称是否可以在过程调用语句中使用。 |
boolean |
supportsCatalogsInTableDefinitions()
检索某个类别名称是否可以在表定义语句中使用。 |
boolean |
supportsColumnAliasing()
检索此数据库是否支持为列提供别名。 |
boolean |
supportsConvert()
检索此数据库是否支持 SQL 类型之间的 CONVERT 功能。 |
boolean |
supportsConvert(int fromType,
int toType)
检索此数据库是否支持两个给定 SQL 类型之间的 CONVERT 。 |
boolean |
supportsCoreSQLGrammar()
检索此数据库是否支持 ODBC Core SQL 语法。 |
boolean |
supportsCorrelatedSubqueries()
检索此数据库是否支持相关子查询。 |
boolean |
supportsDataDefinitionAndDataManipulationTransactions()
检索此数据库是否同时支持事务中的数据定义和数据操作语句。 |
boolean |
supportsDataManipulationTransactionsOnly()
检索此数据库是否仅支持事务中的数据操作语句。 |
boolean |
supportsDifferentTableCorrelationNames()
检索在表关联名称受支持时,是否要限制它们与表的名称不同。 |
boolean |
supportsExpressionsInOrderBy()
检索此数据库是否支持 ORDER BY 列表中的表达式。 |
boolean |
supportsExtendedSQLGrammar()
检索此数据库是否支持 ODBC Extended SQL 语法。 |
boolean |
supportsFullOuterJoins()
检索此数据库是否支持完全嵌套的外连接。 |
boolean |
supportsGetGeneratedKeys()
检索是否可以在执行语句后检索自动生成的键。 |
boolean |
supportsGroupBy()
检索此数据库是否支持某种形式的 GROUP BY 子句。 |
boolean |
supportsGroupByBeyondSelect()
检索此数据库是否支持使用不包含在 SELECT 语句中而包含在 GROUP BY 子句中的列,假设 SELECT 语句中的所有列都包含在 GROUP BY 子句中。 |
boolean |
supportsGroupByUnrelated()
检索此数据库是否支持使用不在 SELECT 语句中而在 GROUP BY 子句中的列。 |
boolean |
supportsIntegrityEnhancementFacility()
检索此数据库是否支持 SQL Integrity Enhancement Facility。 |
boolean |
supportsLikeEscapeClause()
检索此数据库是否支持指定 LIKE 转义子句。 |
boolean |
supportsLimitedOuterJoins()
检索此数据库是否为外连接提供受限制的支持。 |
boolean |
supportsMinimumSQLGrammar()
检索此数据库是否支持 ODBC Minimum SQL 语法。 |
boolean |
supportsMixedCaseIdentifiers()
检索此数据库是否将大小写混写的不带引号的 SQL 标识符作为区分大小写的形式处理,并且最后以大小写混合形式存储它们。 |
boolean |
supportsMixedCaseQuotedIdentifiers()
检索此数据库是否将大小写混写的带引号的 SQL 标识符作为区分大小写的形式处理,并且最后以大小写混合形式存储它们。 |
boolean |
supportsMultipleOpenResults()
检索是否可以同时拥有从 CallableStatement 对象中返回的多个 ResultSet 对象。 |
boolean |
supportsMultipleResultSets()
检索此数据库是否支持一次调用 execute 方法获得多个 ResultSet 对象。 |
boolean |
supportsMultipleTransactions()
检索此数据库是否允许一次打开多个事务(在不同的 connection 上)。 |
boolean |
supportsNamedParameters()
检索此数据库是否支持可调用语句的指定参数。 |
boolean |
supportsNonNullableColumns()
检索是否可以将此数据库中的列定义为非 null。 |
boolean |
supportsOpenCursorsAcrossCommit()
检索此数据库是否支持在进行提交期间保持游标开放。 |
boolean |
supportsOpenCursorsAcrossRollback()
检索此数据库是否支持在回滚期间保持游标开放。 |
boolean |
supportsOpenStatementsAcrossCommit()
检索此数据库是否支持在进行提交期间保持语句开放。 |
boolean |
supportsOpenStatementsAcrossRollback()
检索此数据库是否支持在回滚期间保持语句开放。 |
boolean |
supportsOrderByUnrelated()
检索此数据库是否支持使用不在 SELECT 语句中而在 ORDER BY 子句中的列。 |
boolean |
supportsOuterJoins()
检索此数据库是否支持某种形式的外连接。 |
boolean |
supportsPositionedDelete()
检索此数据库是否支持位置的 DELETE 语句。 |
boolean |
supportsPositionedUpdate()
检索此数据库是否支持位置的 UPDATE 语句。 |
boolean |
supportsResultSetConcurrency(int type,
int concurrency)
检索此数据库是否支持与给定结果集类型结合在一起的给定并发性类型。 |
boolean |
supportsResultSetHoldability(int holdability)
检索此数据库是否支持给定结果集可保存性。 |
boolean |
supportsResultSetType(int type)
检索此数据库是否支持给定结果集类型。 |
boolean |
supportsSavepoints()
检索此数据库是否支持保存点 (savepoint)。 |
boolean |
supportsSchemasInDataManipulation()
检索某个模式名称是否可以数据操作语句中使用。 |
boolean |
supportsSchemasInIndexDefinitions()
检索某个模式名称是否可以在检索定义语句中使用。 |
boolean |
supportsSchemasInPrivilegeDefinitions()
检索某个模式名称是否可以在特权定义语句中使用。 |
boolean |
supportsSchemasInProcedureCalls()
检索某个模式名称是否可以在过程调用语句中使用。 |
boolean |
supportsSchemasInTableDefinitions()
检索某个模式名称是否可以在表定义语句中使用。 |
boolean |
supportsSelectForUpdate()
检索此数据库是否支持位置的 SELECT FOR UPDATE 语句。 |
boolean |
supportsStatementPooling()
检索此数据库是否支持语句合并 (statement pooling)。 |
boolean |
supportsStoredProcedures()
检索此数据库是否支持使用存储过程转义语法的存储过程调用。 |
boolean |
supportsSubqueriesInComparisons()
检索此数据库是否支持比较表达式中的子查询。 |
boolean |
supportsSubqueriesInExists()
检索此数据库是否支持 EXISTS 表达式中的子查询。 |
boolean |
supportsSubqueriesInIns()
检索此数据库是否支持 IN 语句中的子查询。 |
boolean |
supportsSubqueriesInQuantifieds()
检索此数据库是否支持量化表达式 (quantified expression) 中的子查询。 |
boolean |
supportsTableCorrelationNames()
检索此数据库是否支持表关联名称。 |
boolean |
supportsTransactionIsolationLevel(int level)
检索此数据库是否支持给定事务隔离级别。 |
boolean |
supportsTransactions()
检索此数据库是否支持事务。 |
boolean |
supportsUnion()
检索此数据库是否支持 SQL UNION 。 |
boolean |
supportsUnionAll()
检索此数据库是否支持 SQL UNION ALL 。 |
boolean |
updatesAreDetected(int type)
检索是否可以通过调用 ResultSet.rowUpdated 方法检测可见行的更新。 |
boolean |
usesLocalFilePerTable()
检索此数据库是否为每个表使用一个文件。 |
boolean |
usesLocalFiles()
检索此数据库是否将表存储在本地文件中。 |
字段详细信息 |
---|
static final int procedureResultUnknown
getProcedures
方法返回的 ResultSet
对象中 PROCEDURE_TYPE
列的可能值。
static final int procedureNoResult
getProcedures
方法返回的 ResultSet
对象中 PROCEDURE_TYPE
列的可能值。
static final int procedureReturnsResult
getProcedures
方法返回的 ResultSet
对象中 PROCEDURE_TYPE
列的可能值。
static final int procedureColumnUnknown
getProcedureColumns
方法返回的 ResultSet
对象中 COLUMN_TYPE
列的可能值。
static final int procedureColumnIn
getProcedureColumns
方法返回的 ResultSet
对象中 COLUMN_TYPE
列的可能值。
static final int procedureColumnInOut
getProcedureColumns
方法返回的 ResultSet
对象中 COLUMN_TYPE
列的可能值。
static final int procedureColumnOut
getProcedureColumns
方法返回的 ResultSet
对象中 COLUMN_TYPE
列的可能值。
static final int procedureColumnReturn
getProcedureColumns
方法返回的 ResultSet
对象中 COLUMN_TYPE
列的可能值。
static final int procedureColumnResult
getProcedureColumns
方法返回的 ResultSet
对象中 COLUMN_TYPE
列的可能值。
static final int procedureNoNulls
NULL
值。
getProcedureColumns
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int procedureNullable
NULL
值。
getProcedureColumns
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int procedureNullableUnknown
NULL
值。
getProcedureColumns
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int columnNoNulls
NULL
值。
getColumns
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int columnNullable
NULL
值。
getColumns
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int columnNullableUnknown
getColumns
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int bestRowTemporary
getBestRowIdentifier
方法返回的 ResultSet
对象中 SCOPE
列的可能值。
static final int bestRowTransaction
getBestRowIdentifier
方法返回的 ResultSet
对象中 SCOPE
列的可能值。
static final int bestRowSession
getBestRowIdentifier
方法返回的 ResultSet
对象中 SCOPE
列的可能值。
static final int bestRowUnknown
getBestRowIdentifier
方法返回的 ResultSet
对象中 PSEUDO_COLUMN
列的可能值。
static final int bestRowNotPseudo
getBestRowIdentifier
方法返回的 ResultSet
对象中 PSEUDO_COLUMN
列的可能值。
static final int bestRowPseudo
getBestRowIdentifier
方法返回的 ResultSet
对象中 PSEUDO_COLUMN
列的可能值。
static final int versionColumnUnknown
getVersionColumns
方法返回的 ResultSet
对象中 PSEUDO_COLUMN
列的可能值。
static final int versionColumnNotPseudo
getVersionColumns
方法返回的 ResultSet
对象中 PSEUDO_COLUMN
列的可能值。
static final int versionColumnPseudo
getVersionColumns
方法返回的 ResultSet
对象中 PSEUDO_COLUMN
列的可能值。
static final int importedKeyCascade
UPDATE_RULE
列,指示在更新主键时,外键(导入的键)的更改要与之一致。对于 DELETE_RULE
列,它指示在删除主键时,也应删除导入该键的行。
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 UPDATE_RULE
和 DELETE_RULE
列的可能值。
static final int importedKeyRestrict
UPDATE_RULE
列,指示如果主键已被另一个表作为外键导入,则可能不更新该主键。对于 DELETE_RULE
列,指示如果主键已被另一个表作为外键导入,则可能不删除该主键。
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 UPDATE_RULE
和 DELETE_RULE
列的可能值。
static final int importedKeySetNull
UPDATE_RULE
和 DELETE_RULE
列,指示在更新或删除主键时,将外键(导入的键)更改为 NULL
。
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 UPDATE_RULE
和 DELETE_RULE
列的可能值。
static final int importedKeyNoAction
UPDATE_RULE
和 DELETE_RULE
列,指示如果主键已导入,则无法更新或删除它。
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 UPDATE_RULE
和 DELETE_RULE
列的可能值。
static final int importedKeySetDefault
UPDATE_RULE
和 DELETE_RULE
列,指示如果更新或删除了主键,则将外键(导入的键)设置为默认值。
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 UPDATE_RULE
和 DELETE_RULE
列的可能值。
static final int importedKeyInitiallyDeferred
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 DEFERRABILITY
列的可能值。
static final int importedKeyInitiallyImmediate
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 DEFERRABILITY
列的可能值。
static final int importedKeyNotDeferrable
方法 getImportedKeys
、getExportedKeys
和 getCrossReference
返回的 ResultSet
对象中 DEFERRABILITY
列的可能值。
static final int typeNoNulls
NULL
值。
getTypeInfo
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int typeNullable
NULL
值。
getTypeInfo
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int typeNullableUnknown
NULL
值。
getTypeInfo
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int typePredNone
WHERE
搜索子句用于这种类型。
getTypeInfo
方法返回的 ResultSet
对象中 SEARCHABLE
列的可能值。
static final int typePredChar
WHERE
搜索子句只有 WHERE . . . LIKE
。
getTypeInfo
方法返回的 ResultSet
对象中 SEARCHABLE
列的可能值。
static final int typePredBasic
WHERE . . . LIKE
以外的所有 WHERE
搜索子句。
getTypeInfo
方法返回的 ResultSet
对象中 SEARCHABLE
列的可能值。
static final int typeSearchable
WHERE
搜索子句。
getTypeInfo
方法返回的 ResultSet
对象中 SEARCHABLE
列的可能值。
static final short tableIndexStatistic
getIndexInfo
方法返回的 ResultSet
对象中 TYPE
列的可能值。
static final short tableIndexClustered
getIndexInfo
方法返回的 ResultSet
对象中 TYPE
列的可能值。
static final short tableIndexHashed
getIndexInfo
方法返回的 ResultSet
对象中 TYPE
列的可能值。
static final short tableIndexOther
getIndexInfo
方法返回的 ResultSet
对象中 TYPE
列的可能值。
static final short attributeNoNulls
NULL
值。
getAttributes
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final short attributeNullable
NULL
值。
getAttributes
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final short attributeNullableUnknown
NULL
值。
getAttributes
方法返回的 ResultSet
对象中 NULLABLE
列的可能值。
static final int sqlStateXOpen
SQLException.getSQLState
方法的可能返回值。
static final int sqlStateSQL99
SQLException.getSQLState
方法的可能返回值。
方法详细信息 |
---|
boolean allProceduresAreCallable() throws SQLException
getProcedures
方法返回的所有过程。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean allTablesAreSelectable() throws SQLException
SELECT
语句中的 getTables
方法返回的所有表。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误String getURL() throws SQLException
null
SQLException
- 如果发生数据库访问错误String getUserName() throws SQLException
SQLException
- 如果发生数据库访问错误boolean isReadOnly() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean nullsAreSortedHigh() throws SQLException
NULL
值是否被高排序。高排序是指在域中,NULL
值的排序高于其他任何值。在升序中,如果此方法返回 true
,则 NULL
值将出现在末尾。相反,nullsAreSortedAtEnd
方法指示 NULL
值始终存储在末尾,不管排序顺序如何。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean nullsAreSortedLow() throws SQLException
NULL
值是否被低排序。低排序是指在域中,NULL
值的排序低于其他任何值。在升序中,如果此方法返回 true
,则 NULL
值将出现在开头。相反,nullsAreSortedAtStart
方法指示 NULL
值始终存储在开头,不管排序顺序如何。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean nullsAreSortedAtStart() throws SQLException
NULL
值是否始终排在开头,不管排序顺序如何。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean nullsAreSortedAtEnd() throws SQLException
NULL
值是否始终排在末尾,不管排序顺序如何。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误String getDatabaseProductName() throws SQLException
SQLException
- 如果发生数据库访问错误String getDatabaseProductVersion() throws SQLException
SQLException
- 如果发生数据库访问错误String getDriverName() throws SQLException
SQLException
- 如果发生数据库访问错误String getDriverVersion() throws SQLException
String
形式的版本号。
SQLException
- 如果发生数据库访问错误int getDriverMajorVersion()
int getDriverMinorVersion()
boolean usesLocalFiles() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean usesLocalFilePerTable() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsMixedCaseIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean storesUpperCaseIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean storesLowerCaseIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean storesMixedCaseIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsMixedCaseQuotedIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean storesUpperCaseQuotedIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean storesLowerCaseQuotedIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean storesMixedCaseQuotedIdentifiers() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误String getIdentifierQuoteString() throws SQLException
SQLException
- 如果发生数据库访问错误String getSQLKeywords() throws SQLException
SQLException
- 如果发生数据库访问错误String getNumericFunctions() throws SQLException
SQLException
- 如果发生数据库访问错误String getStringFunctions() throws SQLException
SQLException
- 如果发生数据库访问错误String getSystemFunctions() throws SQLException
SQLException
- 如果发生数据库访问错误String getTimeDateFunctions() throws SQLException
SQLException
- 如果发生数据库访问错误String getSearchStringEscape() throws SQLException
'_' 字符表示任何单个字符;'%' 字符表示零个或多个字符的任意序列。
SQLException
- 如果发生数据库访问错误String getExtraNameCharacters() throws SQLException
SQLException
- 如果发生数据库访问错误boolean supportsAlterTableWithAddColumn() throws SQLException
ALTER TABLE
。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsAlterTableWithDropColumn() throws SQLException
ALTER TABLE
。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsColumnAliasing() throws SQLException
如果支持,则可以使用 SQL AS 子句为已经计算的列提供名称,或者为所需要的列提供别名。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean nullPlusNonNullIsNull() throws SQLException
NULL
值与等于 NULL
的非 NULL
值之间的连接。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsConvert() throws SQLException
CONVERT
功能。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsConvert(int fromType, int toType) throws SQLException
CONVERT
。
fromType
- 要转换的类型,它是 java.sql.Types
类中的类型代码之一toType
- 要转换的目标类型,它是 java.sql.Types
类中的类型代码之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误Types
boolean supportsTableCorrelationNames() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsDifferentTableCorrelationNames() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsExpressionsInOrderBy() throws SQLException
ORDER BY
列表中的表达式。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsOrderByUnrelated() throws SQLException
SELECT
语句中而在 ORDER BY
子句中的列。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsGroupBy() throws SQLException
GROUP BY
子句。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsGroupByUnrelated() throws SQLException
SELECT
语句中而在 GROUP BY
子句中的列。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsGroupByBeyondSelect() throws SQLException
SELECT
语句中而包含在 GROUP BY
子句中的列,假设 SELECT
语句中的所有列都包含在 GROUP BY
子句中。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsLikeEscapeClause() throws SQLException
LIKE
转义子句。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsMultipleResultSets() throws SQLException
execute
方法获得多个 ResultSet
对象。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsMultipleTransactions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsNonNullableColumns() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsMinimumSQLGrammar() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCoreSQLGrammar() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsExtendedSQLGrammar() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsANSI92EntryLevelSQL() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsANSI92IntermediateSQL() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsANSI92FullSQL() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsIntegrityEnhancementFacility() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsOuterJoins() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsFullOuterJoins() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsLimitedOuterJoins() throws SQLException
supportsFullOuterJoins
方法返回 true
,则此为 true
)。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误String getSchemaTerm() throws SQLException
SQLException
- 如果发生数据库访问错误String getProcedureTerm() throws SQLException
SQLException
- 如果发生数据库访问错误String getCatalogTerm() throws SQLException
SQLException
- 如果发生数据库访问错误boolean isCatalogAtStart() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误String getCatalogSeparator() throws SQLException
String
。
SQLException
- 如果发生数据库访问错误boolean supportsSchemasInDataManipulation() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSchemasInProcedureCalls() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSchemasInTableDefinitions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSchemasInIndexDefinitions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSchemasInPrivilegeDefinitions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCatalogsInDataManipulation() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCatalogsInProcedureCalls() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCatalogsInTableDefinitions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCatalogsInIndexDefinitions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCatalogsInPrivilegeDefinitions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsPositionedDelete() throws SQLException
DELETE
语句。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsPositionedUpdate() throws SQLException
UPDATE
语句。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSelectForUpdate() throws SQLException
SELECT FOR UPDATE
语句。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsStoredProcedures() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSubqueriesInComparisons() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSubqueriesInExists() throws SQLException
EXISTS
表达式中的子查询。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSubqueriesInIns() throws SQLException
IN
语句中的子查询。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsSubqueriesInQuantifieds() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsCorrelatedSubqueries() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsUnion() throws SQLException
UNION
。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsUnionAll() throws SQLException
UNION ALL
。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsOpenCursorsAcrossCommit() throws SQLException
true
;如果游标可能无法保持开放,则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsOpenCursorsAcrossRollback() throws SQLException
true
;如果游标可能无法保持开放,则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsOpenStatementsAcrossCommit() throws SQLException
true
;如果游标可能无法保持开放,则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsOpenStatementsAcrossRollback() throws SQLException
true
;如果游标可能无法保持开放,则返回 false
SQLException
- 如果发生数据库访问错误int getMaxBinaryLiteralLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxCharLiteralLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxColumnNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxColumnsInGroupBy() throws SQLException
GROUP BY
子句中使用的最大列数。
SQLException
- 如果发生数据库访问错误int getMaxColumnsInIndex() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxColumnsInOrderBy() throws SQLException
ORDER BY
子句中使用的最大列数。
SQLException
- 如果发生数据库访问错误int getMaxColumnsInSelect() throws SQLException
SELECT
列表中使用的最大列数。
SQLException
- 如果发生数据库访问错误int getMaxColumnsInTable() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxConnections() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxCursorNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxIndexLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxSchemaNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxProcedureNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxCatalogNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxRowSize() throws SQLException
SQLException
- 如果发生数据库访问错误boolean doesMaxRowSizeIncludeBlobs() throws SQLException
getMaxRowSize
方法的返回值是否包括 SQL 数据类型 LONGVARCHAR
和 LONGVARBINARY
。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误int getMaxStatementLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxStatements() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxTableNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getMaxTablesInSelect() throws SQLException
SELECT
语句中使用的表的最大数量。
SELECT
语句中使用的表的最大数量;结果为零意味着没有限制或限制是未知的
SQLException
- 如果发生数据库访问错误int getMaxUserNameLength() throws SQLException
SQLException
- 如果发生数据库访问错误int getDefaultTransactionIsolation() throws SQLException
java.sql.Connection
中定义了一些可能值。
SQLException
- 如果发生数据库访问错误Connection
boolean supportsTransactions() throws SQLException
commit
方法是无操作 (noop),并且隔离级别是 TRANSACTION_NONE
。
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsTransactionIsolationLevel(int level) throws SQLException
level
- java.sql.Connection
中定义的事务隔离级别之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误Connection
boolean supportsDataDefinitionAndDataManipulationTransactions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsDataManipulationTransactionsOnly() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean dataDefinitionCausesTransactionCommit() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean dataDefinitionIgnoredInTransactions() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException
仅返回与模式和过程名称标准匹配的过程。它们根据 PROCEDURE_SCHEM
和 PROCEDURE_NAME
进行排序。
每个过程描述都有以下列:
null
)
null
)
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围procedureNamePattern
- 过程名称模式,因为存储在数据库中,所以它必须匹配过程名称
ResultSet
- 每个行都是一个过程描述
SQLException
- 如果发生数据库访问错误getSearchStringEscape()
ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern) throws SQLException
仅返回与模式、过程和参数名称标准匹配的描述。它们根据 PROCEDURE_SCHEM 和 PROCEDURE_NAME 进行排序。在此排序中,返回值(如果有)排在最前面。接着是参数描述,它们按调用顺序排序。然后是列描述,它们按列编号顺序进行排序。
ResultSet
中的每个行都是带以下字段的参数描述或列描述:
null
)
null
)
ResultSet
中的结果列
注:有些数据库可能不为过程返回列描述。REMARKS 以外的其他列可由数据库定义。
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围procedureNamePattern
- 过程名称模式,因为存储在数据库中,所以它必须匹配过程名称columnNamePattern
- 列名称模式,因为存储在数据库中,所以它必须匹配列名称
ResultSet
- 每一行都描述一个存储过程参数或列
SQLException
- 如果发生数据库访问错误getSearchStringEscape()
ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) throws SQLException
每个表描述都有以下列:
null
)
null
)
null
)
null
)
null
)
null
)
null
)
注: 有些数据库可能不返回用于所有表的信息。
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围tableNamePattern
- 表名称模式,因为存储在数据库中,所以它必须匹配表名称types
- 要包括的表类型组成的列表,null
表示返回所有类型
ResultSet
- 每一行都是一个表描述
SQLException
- 如果发生数据库访问错误getSearchStringEscape()
ResultSet getSchemas() throws SQLException
模式列为:
null
)
ResultSet
对象,在该对象中,每一行都是一个模式描述
SQLException
- 如果发生数据库访问错误ResultSet getCatalogs() throws SQLException
类别列为:
ResultSet
对象,在该对象中,每一行都有一个作为类别名称的 String
列
SQLException
- 如果发生数据库访问错误ResultSet getTableTypes() throws SQLException
表类型为:
ResultSet
对象,在该对象中,每一行都有一个作为表类型的 String
列
SQLException
- 如果发生数据库访问错误ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException
仅返回与类别、模式、表和列名称标准匹配的列描述。它们根据 TABLE_SCHEM
、TABLE_NAME
和 ORDINAL_POSITION
进行排序。
每个列描述都有以下列:
null
)
null
)
NULL
值
NULL
值
null
)
null
)
null
)
null
)
null
)
null
)
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围tableNamePattern
- 表名称模式,因为存储在数据库中,所以它必须匹配表名称columnNamePattern
- 列名称模式,因为存储在数据库中,所以它必须匹配列名称
ResultSet
- 每一行都是一个列描述
SQLException
- 如果发生数据库访问错误getSearchStringEscape()
ResultSet getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) throws SQLException
仅返回与列名称标准匹配的特权。它们根据 COLUMN_NAME 和 PRIVILEGE 进行排序。
每个特权描述都有以下列:
null
)
null
)
null
)
null
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在数据库中,所以它必须匹配表名称columnNamePattern
- 列名称模式,因为存储在数据库中,所以它必须匹配列名称
ResultSet
- 每一行都是一个列特权描述
SQLException
- 如果发生数据库访问错误getSearchStringEscape()
ResultSet getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern) throws SQLException
仅返回与模式和表名称标准匹配的特权。它们根据 TABLE_SCHEM、TABLE_NAME 和 PRIVILEGE 进行排序。
每个特权描述都有以下列:
null
)
null
)
null
)
null
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围tableNamePattern
- 表名称模式,因为存储在数据库中,所以它必须匹配表名称
ResultSet
- 每个行都是一个表特权描述
SQLException
- 如果发生数据库访问错误getSearchStringEscape()
ResultSet getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) throws SQLException
每个列描述都有以下列:
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在数据库中,所以它必须匹配表名称scope
- 感兴趣的作用域,可使用于 SCOPE 相同的值nullable
- 包含可为 null 的列。
ResultSet
- 每一行都是一个列描述
SQLException
- 如果发生数据库访问错误ResultSet getVersionColumns(String catalog, String schema, String table) throws SQLException
每个列描述都有以下列:
java.sql.Types
的 SQL 数据类型
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在数据库中,所以它必须匹配表名称
ResultSet
对象,在该对象中,每一行都是一个列描述
SQLException
- 如果发生数据库访问错误ResultSet getPrimaryKeys(String catalog, String schema, String table) throws SQLException
每个主键列描述都有以下列:
null
)
null
)
null
)
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在数据库中,所以它必须匹配表名称
ResultSet
- 每一行都是一个主键列描述
SQLException
- 如果发生数据库访问错误ResultSet getImportedKeys(String catalog, String schema, String table) throws SQLException
每个主键列描述都有以下列:
null
)
null
)
null
)
null
)
NULL
null
)
null
)
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在数据库中,所以它必须匹配表名称
ResultSet
- 每一行都是一个主键列描述
SQLException
- 如果发生数据库访问错误getExportedKeys(java.lang.String, java.lang.String, java.lang.String)
ResultSet getExportedKeys(String catalog, String schema, String table) throws SQLException
每个外键列描述都有以下列:
null
)
null
)
null
),该字符串可能为 null
null
),该字符串可能为 null
NULL
NULL
null
)
null
)
catalog
- 类别名称,因为存储在此数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在此数据库中,所以它必须匹配表名称
ResultSet
对象,在该对象中,每一行都是一个外键列描述
SQLException
- 如果发生数据库访问错误getImportedKeys(java.lang.String, java.lang.String, java.lang.String)
ResultSet getCrossReference(String primaryCatalog, String primarySchema, String primaryTable, String foreignCatalog, String foreignSchema, String foreignTable) throws SQLException
每个外键列描述都有以下列:
null
)
null
)
null
),该字符串可能为 null
null
),该字符串可能为 null
NULL
NULL
null
)
null
)
primaryCatalog
- a 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示从选择标准中删除类别名称primarySchema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示从选择标准中删除模式名称primaryTable
- 导出该键的表的名称,因为存储在数据库中,所以它必须匹配表的名称foreignCatalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示从选择标准中删除类别名称foreignSchema
- 模式名称,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示从选择标准中删除模式名称foreignTable
- 导入该键的表的名称,因为存储在数据库中,所以它必须匹配表的名称
ResultSet
- 每一行是一个外键列描述
SQLException
- 如果发生数据库访问错误getImportedKeys(java.lang.String, java.lang.String, java.lang.String)
ResultSet getTypeInfo() throws SQLException
每个类型描述都有以下列:
null
)
null
)
null
)
null
)
ResultSet
对象,在此对象中,每一行都是一个 SQL 类型描述
SQLException
- 如果发生数据库访问错误ResultSet getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) throws SQLException
每个索引列描述都有以下列:
null
)
null
)
null
);TYPE 为 tableIndexStatistic 时索引类别为 null
null
null
null
;TYPE 为 tableIndexStatistic 时排序序列为 null
null
)
catalog
- 类别名称,因为存储在此数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schema
- 模式名称,因为存储在此数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有模式的描述,为 null
则表示该模式名称不应用于缩小搜索范围table
- 表名称,因为存储在此数据库中,所以它必须匹配表名称unique
- 该参数为 true 时,仅返回惟一值的索引;该参数为 false 时,返回所有索引,不管它们是否惟一approximate
- 该参数为 true 时,允许结果是接近的数据值或这些数据值以外的值;该参数为 false 时,要求结果是精确结果
ResultSet
- 每一行都是一个索引列描述
SQLException
- 如果发生数据库访问错误boolean supportsResultSetType(int type) throws SQLException
type
- 在 java.sql.ResultSet
中定义
true
;否则返回 false
SQLException
- 如果发生数据库访问错误Connection
boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException
type
- 在 java.sql.ResultSet
中定义concurrency
- java.sql.ResultSet
中定义的类型
true
;否则返回 false
SQLException
- 如果发生数据库访问错误Connection
boolean ownUpdatesAreVisible(int type) throws SQLException
ResultSet
对象,结果集自身的更新是否可见。
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean ownDeletesAreVisible(int type) throws SQLException
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean ownInsertsAreVisible(int type) throws SQLException
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean othersUpdatesAreVisible(int type) throws SQLException
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean othersDeletesAreVisible(int type) throws SQLException
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean othersInsertsAreVisible(int type) throws SQLException
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean updatesAreDetected(int type) throws SQLException
ResultSet.rowUpdated
方法检测可见行的更新。
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean deletesAreDetected(int type) throws SQLException
ResultSet.rowDeleted
方法检测可见行的删除。如果 deletesAreDetected
方法返回 false
,则意味着从结果集中移除已删除的行。
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean insertsAreDetected(int type) throws SQLException
ResultSet.rowInserted
方法检测可见行的插入。
type
- ResultSet
类型,它是 ResultSet.TYPE_FORWARD_ONLY
、ResultSet.TYPE_SCROLL_INSENSITIVE
或 ResultSet.TYPE_SCROLL_SENSITIVE
之一
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsBatchUpdates() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) throws SQLException
JAVA_OBJECT
、STRUCT
或 DISTINCT
。
仅返回与类别、模式、类型名称和类型标准匹配的类型。它们根据 DATA_TYPE、TYPE_SCHEM 和 TYPE_NAME 进行排序。类型名称参数可能为完全限定名称。在这种情况下,忽略 catalog 和 schemaPattern 参数。
每个类型描述都有以下列:
null
)
null
)
null
)
注: 如果驱动程序不支持 UDT,则返回空结果集。
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有类别的描述,为 null
则表示该模式名称不应用于缩小搜索范围typeNamePattern
- 类型名称模式,因为存储在数据库中,所以它必须匹配类型名称,它可以是一个完全限定名称types
- 将包括的用户定义类型(JAVA_OBJECT、STRUCT 或 DISTINCT)组成的列表;该参数为 null
则返回所有类型
ResultSet
对象,其中每一行都描述了一个 UDT
SQLException
- 如果发生数据库访问错误Connection getConnection() throws SQLException
SQLException
- 如果发生数据库访问错误boolean supportsSavepoints() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsNamedParameters() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsMultipleOpenResults() throws SQLException
CallableStatement
对象中返回的多个 ResultSet
对象。
CallableStatement
对象可以同时返回多个 ResultSet
对象,则返回 true
;否则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsGetGeneratedKeys() throws SQLException
true
;否则返回 false
SQLException
- 如果发生数据库访问错误ResultSet getSuperTypes(String catalog, String schemaPattern, String typeNamePattern) throws SQLException
仅返回与类别、模式和类型名称匹配的用于 UDT 的超类型信息。类型名称参数可能为完全限定名称。当提供的 UDT 名称是完全限定名称时,忽略 catalog 和 schemaPattern 参数。
如果 UDT 没有直接的超类型,则它不会在这里列出。由此方法返回的 ResultSet
对象的一行描述了指定 UDT 和直接超类型。每一行都具有以下列:
null
)
null
)
null
)
null
)
注: 如果驱动程序不支持类型分层结构,则返回空结果集。
catalog
- 类别名称,该参数为 "" 表示检索没有类别的那些描述,为 null
则表示从选择标准中删除类别名称schemaPattern
- 模式名称的模式,该参数为 "" 表示检索没有模式的那些描述typeNamePattern
- UDT 名称模式,可以是一个完全限定名称
ResultSet
对象,其中一行给出了关于指定 UDT 的信息
SQLException
- 如果发生数据库访问错误ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern) throws SQLException
仅返回与类别、模式和表名称匹配的表的超表 (supertable) 信息。表名称参数可能为完全限定名称,在这种情况下,可忽略 catalog 和 schemaPattern 参数。如果表没有超表,则它不会在这里列出。超表必须使用与子表相同的类别和模式来定义。所以,类型描述不必包含子表的此信息。
每个类型描述都有以下列:
null
)
null
)
注: 如果驱动程序不支持类型分层结构,则返回空结果集。
catalog
- 类别名称,该参数为 "" 表示检索没有类别的那些描述,为 null
则表示从选择标准中删除类别名称schemaPattern
- 模式名称的模式,该参数为 "" 表示检索没有模式的那些描述tableNamePattern
- 表名称模式,可以是一个完全限定名称
ResultSet
对象,其中的每一行都是一个类型描述
SQLException
- 如果发生数据库访问错误ResultSet getAttributes(String catalog, String schemaPattern, String typeNamePattern, String attributeNamePattern) throws SQLException
仅返回与类别、模式、类型和属性名称标准匹配的 UDT 的属性描述。它们根据 TYPE_SCHEM、TYPE_NAME 和 ORDINAL_POSITION 进行排序。此描述不包含某些特定的继承属性。
返回的 ResultSet
对象具有以下列:
null
)
null
)
null
)
null
)
null
)
null
)
null
)
null
)
catalog
- 类别名称,因为存储在数据库中,所以它必须匹配类别名称。该参数为 "" 则检索没有类别的描述,为 null
则表示该类别名称不应用于缩小搜索范围schemaPattern
- 模式名称的模式,因为存储在数据库中,所以它必须匹配模式名称。该参数为 "" 则检索那些没有类别的描述,为 null
则表示该模式名称不应用于缩小搜索范围typeNamePattern
- 类型名称模式,因为存储在数据库中,所以它必须匹配类型名称attributeNamePattern
- 属性名称模式,因为在数据库中被声明,所以它必须匹配属性名称
ResultSet
对象,其中每一行都是一个属性描述
SQLException
- 如果发生数据库访问错误boolean supportsResultSetHoldability(int holdability) throws SQLException
holdability
- 以下常量之一:ResultSet.HOLD_CURSORS_OVER_COMMIT
或 ResultSet.CLOSE_CURSORS_AT_COMMIT
- 返回:
- 如果支持,则返回
true
;否则返回 false
- 抛出:
SQLException
- 如果发生数据库访问错误- 从以下版本开始:
- 1.4
- 另请参见:
Connection
int getResultSetHoldability() throws SQLException
ResultSet
对象的默认可保存性。
ResultSet.HOLD_CURSORS_OVER_COMMIT
或 ResultSet.CLOSE_CURSORS_AT_COMMIT
SQLException
- 如果发生数据库访问错误int getDatabaseMajorVersion() throws SQLException
SQLException
- 如果发生数据库访问错误int getDatabaseMinorVersion() throws SQLException
SQLException
- 如果发生数据库访问错误int getJDBCMajorVersion() throws SQLException
SQLException
- 如果发生数据库访问错误int getJDBCMinorVersion() throws SQLException
SQLException
- 如果发生数据库访问错误int getSQLStateType() throws SQLException
SQLException.getSQLState
返回的 SQLSTATE 是 X/Open(现在称为 Open Group)SQL CLI 还是 SQL99。
SQLException
- 如果发生数据库访问错误boolean locatorsUpdateCopy() throws SQLException
true
;如果直接更新到 LOB,则返回 false
SQLException
- 如果发生数据库访问错误boolean supportsStatementPooling() throws SQLException
true
;否则返回 false
SQLExcpetion
- 如果发生数据库访问错误
SQLException
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2004 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。