2005 01 20 JDBC連線各種資料庫

2021-04-13 06:27:34 字數 1786 閱讀 9217

下面羅列了各種資料庫使用

jdbc

連線的方式,供查閱之用。 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

資料庫

or class.forname("com.ibm.db2.jdbc.net.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

資料庫

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

4、mysql

資料庫

class.forname("org.gjt.mm.mysql.driver").newinstance(); 

string url ="jdbc:mysql://localhost/mydb?user=soft&password=soft

1234

&useunicode=true&characterencoding=8859_1" 

//mydb

為資料庫名

connection conn= drivermanager.getconnection(url);  

5、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);  

JDBC連線出錯

在連線資料庫來運算元據時,出現如下錯誤資訊 org.springframework.beans.factory.xml.xmlbeandefinitionreader loading xml bean definitions from class path resource org springfr...

JDBC連線屬性

hibernate 需要進行資料庫訪問,因此必須設定連線資料庫的相關屬性。所有 hibernate 屬性的名字和語義都在 org.hibernate.cfg.environment 中定義。下面是關於 jdbc 連線配置中最重要的設定。hibernate.connection.driver clas...

JDBC連線屬性

hibernate 需要進行資料庫訪問,因此必須設定連線資料庫的相關屬性。所有 hibernate 屬性的名字和語義都在 org.hibernate.cfg.environment 中定義。下面是關於 jdbc 連線配置中最重要的設定。hibernate.connection.driver clas...