JDBC連線各種資料庫的方法

2021-08-27 21:48:23 字數 2138 閱讀 4886

//jdbc連線各種資料庫的方法(經典)

//1)連線oracle 8/8i/9i/10g/11g(thin模式)

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

string url="jdbc:oracle:thin:@localhost:1521:orcl" //orcl為oracle資料庫的sid

string user="test";

string password="test";

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

//2)連線db2資料庫

class.forname("com.ibm.db2.jcc.db2driver");

string url="jdbc:db2://localhost:5000/testdb";

string user="test"; string password="test";

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

//3)連線mysql資料庫

class.forname("com.mysql.jdbc.driver");

string url="jdbc:mysql://localhost:8080/testdb";

string user="test"; string password="test";

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

//4)連線sql server2000資料庫

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

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

string user="test"; string password="test";

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

//5)連線postgresql資料庫

class.forname("org.postgresql.driver");

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

string user="test"; string password="test";

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

//6)連線access資料庫

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

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

//7連線sybase資料庫

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

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

properties pro=system.getproperties();

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

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

connection con=drivermanager.getconnection(url,pro);

//8連線informix資料庫

class.forname("com.informix.jdbc.ifxdriver");

string url="jdbc:informix-sqli:localhost:1533/testdb:informixserver=myserver"user=testuser;password=testpassword";

connection con=drivermanager.getconnection(url);

JDBC連線各種資料庫方法

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

JDBC連線各種資料庫方法

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

JDBC連線各種資料庫方法

jdbc連線各種資料庫的方法如下 1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl o...