Java連線各種資料庫方法的介紹

2021-05-12 11:16:18 字數 2586 閱讀 5623

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資料庫

string url="jdbc:db2://localhost:5000/sample"; //sample為你的資料庫名

3、sql server7.0/2000資料庫

class.forname("com.microsoft.jdbc.sqlserver.sqlserverdriver").newinstance();

string url="jdbc:microsoft:sqlserver://localhost:1433;databasename=mydb";

//mydb為資料庫

connection conn= drivermanager.getconnection(url,user,password); 軟體開發網

4、sybase資料庫

class.forname("com.sybase.jdbc.sybdriver").newinstance();

string url =" jdbc:sybase:tds:localhost:5007/mydb";//mydb為你的資料庫名 http://www.mscto.com

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

//或者class.forname("com.mysql.jdbc.driver"); 軟體開發網

string url ="jdbc:mysql://localhost/mydb?

user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"

軟體開發網

//mydb為資料庫名

connection conn= drivermanager.getconnection(url); 軟體開發網

7、postgresql資料庫

string url ="jdbc:postgresql://localhost/mydb" //mydb為資料庫名

string user="myuser";

string password="mypassword";

connection conn= drivermanager.getconnection(url,user,password);

8、access資料庫直連用odbc的

class.forname("sun.jdbc.odbc.jdbcodbcdriver") ;

string url="jdbc:odbc:driver={microsoft access driver

connection conn = drivermanager.getconnection(url,"","");

statement stmtnew=conn.createstatement() ;

java連線各種資料庫的方法

1.oracle8 8i 9i 資料庫 用 thin 模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl string user sc...

java連線各種資料庫的方法

1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...

Java連線各種資料庫

此文中的 主要列出連線資料庫的關鍵 其他訪問資料庫 省略 1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost...