Java連線各種資料庫的例項

2021-03-31 22:13:21 字數 2442 閱讀 8828

此文中的**主要列出連線資料庫的關鍵**,其他訪問資料庫**省略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資料庫

class.forname

(string url="jdbc:db2://localhost:5000/sample";

//sample

為你的資料庫名

string user="admin";

string password="";

connection conn= drivermanager.getconnection

(url,user,password); 3、

sqlserver7.0/2000

資料庫class.forname

("***.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、

sybase

資料庫class.forname

("***.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); 5、

informix

資料庫class.forname

("***.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

(".gjt.mm.mysql.driver").newinstance();

string url ="jdbc:mysql://localhost/mydb?user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"

//mydb

為資料庫名

connection conn= drivermanager.getconnection

(url); 7、

postgresql

資料庫class.forname

(".postgresql.driver").newinstance();

string url ="jdbc:postgresql://localhost/mydb"

//mydb

為資料庫名

string user="myuser";

string password="mypassword";

connection conn= drivermanager.getconnection

(url,user,password);

Java連線各種資料庫的例項

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

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...

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...