0

我正在尝试获取/设置一些属性,如下所示:

数据库名称
端口号
服务器名称
驱动程序类型
只读

来自 DB2 数据库。如何使用 java 的 JDBC 做到这一点?

4

2 回答 2

0

Try to get these details from the Database Metadata. You will have to figure out where DB2 puts these values....

于 2013-08-23T02:26:06.960 回答
0

尝试类似下一个:

// URL for data source
String url = "jdbc:db2://myhost:5021/mydb:" +
             "user=dbadm;password=dbadm;";

// Create connection
Connection con = DriverManager.getConnection(url);

// Create the DatabaseMetaData object
DatabaseMetaData dbmtadta = con.getMetaData();

// Check the driver version
dmtadta.getDriverVersion();
于 2013-08-23T02:29:02.897 回答