Java DatabaseMetaData 的 supportsResultSetHoldability() 方法及示例
ResultSet 的保持性决定了当使用 Connection 接口的 commit() 方法提交包含该游标/ResultSet 对象的事务时,ResultSet 对象(游标)是否应该关闭或保持打开状态。
ResultSet 接口提供两个值来指定 ResultSet 的保持性:
CLOSE_CURSORS_AT_COMMIT: 如果 ResultSet 对象的保持性设置为该值,则每当使用 Connection 接口的 commit() 方法提交/保存事务时,在当前事务中创建的(已打开的)ResultSet 对象将被关闭。
HOLD_CURSORS_OVER_COMMIT: 如果 ResultSet 对象的保持性设置为该值,则每当使用 Connection 接口的 commit() 方法提交/保存事务时,在当前事务中创建的(已打开的)ResultSet 对象将保持打开状态。
DatabaseMetaData 接口的 supportsResultSetHoldability() 方法用于确定底层数据库是否支持指定的 ResultSet 保持性。此方法接受表示 ResultSet 保持性值的整数,并返回一个布尔值:
如果底层数据库支持存储过程,则为 True。
如果底层数据库不支持存储过程,则为 False。
要确定底层数据库是否支持存储过程:
确保您的数据库正在运行。
使用 DriverManager 类的 registerDriver() 方法注册驱动程序。传递与底层数据库对应的驱动程序类的对象。
使用 DriverManager 类的 getConnection() 方法获取连接对象。将数据库 URL、用户名和数据库用户的密码作为字符串变量传递。
使用 Connection 接口的 getMetaData() 方法获取当前连接的 DatabaseMetaData 对象。
最后,调用 ResultSetMetaData 接口的 supportsResultSetHoldability() 方法,并将返回值保存在布尔变量(例如 bool)中。如果该值为 true,则底层数据库支持存储过程;否则不支持。
以下 JDBC 程序建立与 MySQL 数据库的连接,并确定并打印它是否支持指定的 ResultSet 保持性。
示例
import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; public class DatabaseMetadata_supportsResultSetHoldability { 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/mydatabase"; Connection con = DriverManager.getConnection(url, "root", "password"); System.out.println("Connection established......"); //Retrieving the meta data object DatabaseMetaData metaData = con.getMetaData(); //Determining whether the underlying database supports the specified concurrency boolean bool = metaData.supportsResultSetHoldability(ResultSet.CLOSE_CURSORS_AT_COMMIT); if(bool) { System.out.println("Underlying database supports the specified holdability"); } else { System.out.println("Underlying database does not supports the specified holdability"); } } }
输出
Connection established...... Underlying database does not supports the specified holdability