Java連線資料庫方式大全

2021-08-26 03:44:58 字數 2006 閱讀 5586

mysql

string driver="com.mysql.jdbc.driver";    //驅動程式    

string url="jdbc:mysql://localhost:3306/db_name"; //連線的url,db_name為資料庫名

string username="username"; //使用者名稱

string password="password"; //密碼

class.forname(driver).new instance(); //載入資料庫驅動

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

oracle

string driver="oracle.jdbc.driver.oracledriver";   

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

db2

//string driver="com.ibm.db2.jdbc.net.db2.driver"; //連線不具有db2客戶端的provider例項

string url="jdbc:db2://localhost:50000/db_name"; //db_name為資料可名

sql server

1)

string driver="com.microsoft.jdbc.sqlserver.sqlserverdriver"; //連線sql資料庫的方法

string url="jdbc:microsoft:sqlserver://localhost:1433;databasename=db_name"; //db_name為資料庫名

2) string driver="com.microsoft.sqlserver.jdbc.sqlserverdriver";

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

informix:

string driver="com.informix.jdbc.ifxdriver";        

string url="jdbc:informix-sqli://localhost:1533/db_name:informixser=myserver";

jdbc-odbc:

string driver="sun.jdbc.odbc.jdbcodbcdriver";    

string url="jdbc:odbc:dbsource"; //dbsource為資料來源名

sysbase:

string driver="com.sybase.jdbc.sybdriver";    //驅動程式    

string url="jdbc:sysbase://localhost:5007/db_name"; //db_name為資料可名

postgresql:

string driver="org.postgresql.driver";    //連線資料庫的方法    

string url="jdbc:postgresql://localhost/db_name"; //db_name為資料可名

各種資料庫連線大同小異,區別的是driver和url,其他的區別不大。參考:

連線資料庫大全

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

Java連線資料庫大全 8種

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

jdbc連線資料庫大全

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