連線資料庫大全

2021-05-22 21:39:32 字數 2085 閱讀 9588

、oracle8/8i/9i資料庫(用thin模式) 

testoracle.jsp如下: 

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

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

//orcl為你的資料庫的sid 

string user="scott"; 

string password="tiger"; 

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

注意:8  和 9 的驅動不同!

二、sql server7.0/2000資料庫 

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

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

//pubs為你的資料庫的 

string user="sa"; 

string password=""; 

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

四、informix資料庫 

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

string url = 

"jdbc:informix-sqli://123.45.67.89:1533/testdb:informixserver=myserver; 

user=testuser;password=testpassword"; 

//testdb為你的資料庫名 

connection conn= drivermanager.getconnection(url); 

五、連線sybase資料庫 

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

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

//tsdata為你的資料庫名 

properties sysprops = system.getproperties(); 

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

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

六、mysql資料庫 

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

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

//testdb為你的資料庫名 

connection conn= drivermanager.getconnection(url);

//  org.git.mm.mysql.driver 是2.x 的驅動 

//  com.mysql.jdbc.driver   是3.x以上的

七、連線postgresql資料庫 

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

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

//soft為你的資料庫名 

string user="myuser"; 

string password="mypassword"; 

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

jdbc連線資料庫大全

鏈結 sql資料庫 class.forname com.microsoft.jdbc.sqlserver.sqlserverdriver string url jdbc microsoft sqlserver 192.168.100.9 1433 databasename asset string ...

jsp連線資料庫大全

create table test test1 varchar 20 test2 varchar 20 一 jsp連線oracle8 8i 9i資料庫 用thin模式 orcl為你的資料庫的sid pubs為你的資料庫的 三 jsp連線db2資料庫 sample為你的資料庫名 testdb為你的資料...

JSP連線資料庫大全

一 jsp連線oracle8 8i 9i資料庫 用thin模式 testoracle.jsp如下 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 ...