首页 > 数据库技术 > 详细

各种数据库的链接方式总结

时间:2019-05-14 12:10:13      阅读:96      评论:0      收藏:0      [点我收藏+]

Mysql数据库

 String driver=“com.mysql.jdbc.Driver”;
 String url="jdbc:mysql://127.0.0.1:3306/test";
 String user="root";
 String password="root";
 Class.forName("driver")
 Connection conn= DriverManager.getConnection(url,user,password);

Oracle数据库

 String driver=“oracle.jdbc.driver.OracleDriver”;
 String url="jdbc:oracle:thin:@//127.0.0.1:1521/orcl";
 String user="root";
 String password="root";
 Class.forName("driver")
 Connection conn= DriverManager.getConnection(url,user,password);

PostgreSQL数据库

String driver=“org.postgresql.Driver”;
 String url="jdbc:postgresql://127.0.0.1:5432/postgres";
 String user="root";
 String password="root";
 Class.forName("driver")
 Connection conn= DriverManager.getConnection(url,user,password);

DB2数据库

String driver="com.ibm.db2.jdbc.app.DB2Driver "
String url="jdbc:db2://localhost:5000/sample"; //sample为你的数据库名
String user="admin";
String password="";
 Class.forName("driver")
 Connection conn= DriverManager.getConnection(url,user,password);

SQL Server 数据库

String driver="com.microsoft.sqlserver.jdbc.SQLServerDriver";
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb";
String user="sa";
String password="";
Class.forName("driver")
Connection conn= DriverManager.getConnection(url,user,password);

 

     

各种数据库的链接方式总结

原文:https://www.cnblogs.com/dk2557/p/10861400.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!