Java DatabaseMetaData getIndexInfo() 方法及示例


此方法检索表的索引描述。它接受 5 个参数:

  • catalog − 一个字符串参数,表示包含(您需要其索引描述的)表的目录(通常为数据库)的名称,传递 "" 以获取没有目录的表中的索引描述,如果不想使用目录并缩小搜索范围,则传递 null。

  • schema − 一个字符串参数,表示表的架构名称,传递 "" 以获取没有架构的表中的列的描述,如果不想使用架构,则传递 null。

  • table − 一个字符串参数,表示表的名称。

  • unique − 一个布尔参数,如果为 true,则此方法仅返回唯一值的索引,如果为 false,则返回索引,而不管唯一值如何。

  • approximate − 一个布尔参数,如果为 true,则此方法返回近似值,如果为 false,则此方法返回精确值。

此方法返回一个 ResultSet 对象,该对象描述指定的索引。此对象保存以下详细信息的值(作为列名):

列名
数据类型
描述
TABLE_CAT
字符串
表的目录。
TABLE_SCHEM
字符串
架构的目录。
TABLE_NAME
字符串
表的名称。
INDEX_QUALIFIER
字符串
这表示索引目录,当类型为 tableIndexStatistic 时为 null。
INDEX_NAME
字符串
索引的名称。
TYPE
短整型
索引的类型。
ORDINAL_POSITION
短整型
索引的序列号。
COLUMN_NAME
字符串
列的名称。
CARDINALITY
整型
当 TYPE 为 tableIndexStatistic 时,这是表中的行数;否则,它是索引中唯一值的数目。
FILTER_CONDITION
字符串
过滤条件。


要获取数据库中所需索引的描述,请执行以下操作:

  • 确保您的数据库正在运行。

  • 使用 DriverManager 类的 registerDriver() 方法注册驱动程序。传递与底层数据库对应的驱动程序类的对象。

  • 使用 DriverManager 类的 getConnection() 方法获取连接对象。将数据库的 URL、用户名和数据库用户的密码作为字符串变量传递。

  • 使用 Connection 接口的 getMetaData() 方法获取当前连接的 DatabaseMetaData 对象。

  • 最后,通过调用 DatabaseMetaData 接口的 getIndexInfo() 方法,获取包含所需列描述的 ResultSet 对象。

示例

让我们创建一个名为 sample_database 的数据库,并在其中使用 CREATE 语句创建一个名为 sample_table 的表,如下所示:

CREATE DATABASE example_database;
CREATE TABLE example_database.sample_table(Name VARCHAR(255), age INT, Location VARCHAR(255));

现在,我们将使用 INSERT 语句在 sample_table 表中插入 2 条记录:

insert INTO example_database.sample_table values('Kasyap', 29, 'Vishakhapatnam');
INSERT INTO example_database.sample_table values('Krishna', 30, 'Hyderabad');
Finally, create a n index with name sample_index on the above created table as:
mysql> CREATE INDEX sample_index ON sample_table (name) USING BTREE;
Query OK, 0 rows affected (1.42 sec)
Records: 0 Duplicates: 0 Warnings: 0

以下 JDBC 程序建立与 MySQL 数据库的连接,检索上面创建的索引的描述。

import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
public class DatabaseMetaData_getIndexInfo {
   public static void main(String args[]) throws SQLException {
      //Registering the Driver
      DriverManager.registerDriver(new com.mysql.jdbc.Driver());
      //Getting the connection
      String url = "jdbc:mysql://127.0.0.1/example_database";
      Connection con = DriverManager.getConnection(url, "root", "password");
      System.out.println("Connection established......");
      //Retrieving the meta data object
      DatabaseMetaData metaData = con.getMetaData();
      //Retrieving the columns in the database
      ResultSet rs = metaData.getIndexInfo("example_database", null, "sample_table", false, false);
      //Printing the column name and size
      while (rs.next()) {
         System.out.println("Table name: "+rs.getString("Table_NAME"));
         System.out.println("Column name: "+rs.getString("COLUMN_NAME"));
         System.out.println("Column name: "+rs.getString("NON_UNIQUE"));
         System.out.println("Index name: "+rs.getString("INDEX_NAME"));
         System.out.println(" ");
      }
   }
}

输出

Connection established......
Table name: sample_table
Column name: Name
Column name: true
Index name: sample_index

更新于: 2019-07-30

659 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告