各种数据库的链接方式总结
Posted dk2557
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了各种数据库的链接方式总结相关的知识,希望对你有一定的参考价值。
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 url="jdbc:db2://localhost:5000/sample"; //sample为你的数据库名
String user="admin";
String password="";
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);
以上是关于各种数据库的链接方式总结的主要内容,如果未能解决你的问题,请参考以下文章