java命名空间java.sql接口databasemetadata的类成员方法:
getindexinfo定义及介绍
本文导语:
getindexinfo
resultset getindexinfo(string catalog,
string schema,
string table,
boolean unique,
boolean approximate)
throws sqlexception
获取给定表的索引和统计信息...
getindexinfo
resultset getindexinfo(string catalog,
string schema,
string table,
boolean unique,
boolean approximate)
throws sqlexception
- 获取给定表的索引和统计信息的描述。它们根据 non_unique、type、index_name 和 ordinal_position 进行排序。
每个索引列描述都有以下列:
- table_cat string => 表类别(可为
null
)
- table_schem string => 表模式(可为
null
)
- table_name string => 表名称
- non_unique boolean => 索引值是否可以不唯一。type 为 tableindexstatistic 时索引值为 false
- index_qualifier string => 索引类别(可为
null
);type 为 tableindexstatistic 时索引类别为 null
- index_name string => 索引名称;type 为 tableindexstatistic 时索引名称为
null
- type short => 索引类型:
- tableindexstatistic - 此标识与表的索引描述一起返回的表统计信息
- tableindexclustered - 此为集群索引
- tableindexhashed - 此为散列索引
- tableindexother - 此为某种其他样式的索引
- ordinal_position short => 索引中的列序列号;type 为 tableindexstatistic 时该序列号为零
- column_name string => 列名称;type 为 tableindexstatistic 时列名称为
null
- asc_or_desc string => 列排序序列,"a" => 升序,"d" => 降序,如果排序序列不受支持,可能为
null
;type 为 tableindexstatistic 时排序序列为 null
- cardinality int => type 为 tableindexstatistic 时,它是表中的行数;否则,它是索引中唯一值的数量。
- pages int => type 为 tableindexstatisic 时,它是用于表的页数,否则它是用于当前索引的页数。
- filter_condition string => 过滤器条件,如果有的话。(可能为
null
)
- 参数:
catalog
- 类别名称;它必须与存储在数据库中的类别名称匹配;该参数为 "" 表示获取没有类别的那些描述;为 null
则表示该类别名称不应该用于缩小搜索范围schema
- 模式名称;它必须与存储在数据库中的模式名称匹配;该参数为 "" 表示获取没有模式的那
些描述;为 null
则表示该模式名称不应该用于缩小搜索范围table
- 表名称;它必须与存储在数据库中的表名称匹配unique
- 该参数为 true 时,仅返回唯一值的索引;该参数为 false 时,返回所有索引,不管它们是否唯一approximate
- 该参数为 true 时,允许结果是接近的数据值或这些数据值以外的值;该参数为 false 时,要求结果是精确结果
- 返回:
resultset
- 每一行都是一个索引列描述
- 抛出:
sqlexception
- 如果发生数据库访问错误