1. 首页
  2. 网络技术
  3. 其他
  4. JDBC连接方式

JDBC连接方式

上传者: 2019-01-08 00:39:19上传 DOC文件 14.5KB 热度 33次
简单几种JDBC链接方式 DB2Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance(); String url="jdbc:db2://localhost:5000/sample"; //sample为你的数据库名 String user="admin"; String password=""; Connection conn= DriverManager.getConnection(url,user,password);
用户评论