java連線各種資料庫的方法

2021-05-25 23:09:14 字數 1766 閱讀 9999

1.oracle8/8i/9i

資料庫(用

thin

模式)class.forname("oracle.jdbc.driver.oracledriver").newinstance();

string url="jdbc:oracle:thin:@localhost:1521:orcl";

string user="scott"; 

string password="tiger"; 

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

2.sql server7.0/2000

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

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

string user="sa"; 

string password=""; 

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

3.db2

資料庫4.informix

資料庫class.forname("com.informix.jdbc.ifxdriver").newinstance();

string url = "jdbc:informix-sqli:"; 

connection conn= drivermanager.getconnection(url);

5.sybase

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

string url =" jdbc:sybase:tds:localhost:5007/tsdata";

properties sysprops = system.getproperties(); 

sysprops.put("user","userid"); 

sysprops.put("password","user_password");

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

6.mysql

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

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

connection conn= drivermanager.getconnection(url);

7.postgresql

資料庫class.forname("org.postgresql.driver").newinstance(); 

string url ="jdbc:postgresql://localhost/soft"; 

string user="myuser";

string password="mypassword"; 

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

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