各類數據庫的連接方式總結

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);mysql

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);sql

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); oracle

     
相關文章
相關標籤/搜索