JDBC連線各種資料庫方法

2021-04-09 03:10:02 字數 2364 閱讀 6512

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

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

string user="admin";

string password="admin";

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

3、sql server 7.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="sa";

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

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://localhost:1533

/mydb:informixserver=myserver;user=test;password=test";  //mydb為資料庫名

connection conn = drivermanager.getconnection(url);

6、mysql資料庫

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

//或class.forname("com.mysql.jdbc.driver").newinstance();

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

user=soft&password=soft123&useunicode=true&characterencoding=8859_1";   //mydb為資料庫名

connection conn = drivermanager.getconnection(url);

7、postgresql資料庫

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

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

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

statement stmnew = conn.createstatement();

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連線各種資料庫方法

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

JDBC連線各種資料庫方法

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