DriverManager.getConnection

DriverManager.getConnectionDriverManager.getConnectionDriverManager.getConnection一共有四个重载方法,前三个由public修饰,用来获取不同类型的参数,getConnection实际相当于一个入口,最终都会return第四个私有化的getConnection方法。参考:https://www.cnblogs.com/yachao1120/p/8669292.html…

DriverManager.getConnection

DriverManager.getConnection
DriverManager.getConnection一共有四个重载方法,前三个由public修饰,用来获取不同类型的参数,getConnection实际相当于一个入口,最终都会return第四个私有化的getConnection方法。

参考:https://www.cnblogs.com/yachao1120/p/8669292.html
jdbc的数据库驱动类DriverManager.getConnection()详解
1、Oracle8/8i/9i数据库(thin模式)
Class.forName(“oracle.jdbc.driver.OracleDriver”).newInstance();
String url=“jdbc:oracle:thin:@localhost:1521:orcl”;
//orcl为数据库的SID
String user=“test”;
String password=“test”;
Connection conn= DriverManager.getConnection(url,user,password);

2、DB2数据库
Class.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);

3、Sql Server7.0/2000数据库(三个jar包:msbase.jar,mssqlserver.jar,msutil.jar)
Class.forName(“com.microsoft.jdbc.sqlserver.SQLServerDriver”).newInstance();
String url=“jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb”;
//mydb为数据库
String user=“sa”;
String password=””;
Connection conn= DriverManager.getConnection(url,user,password);

注意:一个jar包(sqljdbc4.jar)的时候,应该是这样的,除掉“microsoft”

Class.forName(“com.jdbc.sqlserver.SQLServerDriver”).newInstance();
String url=“jdbc:sqlserver://localhost:1433;DatabaseName=mydb”;

4、Sybase数据库
Class.forName(“com.sybase.jdbc.SybDriver”).newInstance();
String url =” jdbc:sybase:Tds:localhost:5007/myDB”;
//myDB为你的数据库名
Properties sysProps = System.getProperties();
SysProps.put(“user”,“userid”);
SysProps.put(“password”,“user_password”);
Connection conn= DriverManager.getConnection(url, SysProps);

5、Informix数据库
Class.forName(“com.informix.jdbc.IfxDriver”).newInstance();
String url =
“jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;
user=testuser;password=testpassword”;
//myDB为数据库名
Connection conn= DriverManager.getConnection(url);

6、MySQL数据库
Class.forName(“org.gjt.mm.mysql.Driver”).newInstance();
String url =“jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicod
e=true&characterEncoding=8859_1”
//myDB为数据库名
Connection conn= DriverManager.getConnection(url);

7、PostgreSQL数据库
Class.forName(“org.postgresql.Driver”).newInstance();
String url =“jdbc:postgresql://localhost/myDB”
//myDB为数据库名
String user=“myuser”;
String password=“mypassword”;
Connection conn= DriverManager.getConnection(url,user,password);

今天的文章DriverManager.getConnection分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/28192.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注