class.forname(驅動字串)
connection connection=drivermanager.getconnection(連線字串)
sql 2000
1 通用的jdbc-odbc橋連線
驅動字串sun.jdbc.odbc.jdbcodbcdriver
連線字串jdbc:odbc:資料來源名
2通過jdbc的純連線
驅動字串com.microsoft.jdbc.sqlserver.sqlserverdriver
連線字串jdbc:microsoft:sqlserver://localhost:1433;databasename=資料庫名
sql 2005
驅動字串com.microsoft.sqlserver.jdbc.sqlserverdriver
連線字串jdbc:sqlserver://localhost:1433;databasename=資料庫名
sql 2008
驅動字串
com.microsoft.sqlserver.jdbc.sqlserverdriver
連線字串
jdbc:sqlserver://localhost:1433;databasename=資料庫名
(其實和2005是一樣的。。。。)
mysql資料庫
class.forname("org.gjt.mm.mysql.driver").newinstance(); //或者class.forname("com.mysql.jdbc.driver");
string url ="jdbc:mysql://localhost/mydb?user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"
//mydb為資料庫名
connection conn= drivermanager.getconnection(url);
oracle
oracle連線
驅動字串oracle.jdbc.driver.oracledriver
連線字串1) thin方式 jdbc:oracle:thin:@主機名:埠號:資料庫例程名
2) oci8方式 jdbc:oracle:oci8:@網路服務名
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);
access
驅動字串sun.jdbc.odbc.jdbcodbcdriver
連線字串jdbc:odbc:driver=;dbq=資料庫檔案.mdb
access資料庫直連用odbc的
class.forname("sun.jdbc.odbc.jdbcodbcdriver") ;
string url="jdbc:odbc:driver=;
connection conn = drivermanager.getconnection(url,"","");
statement stmtnew=conn.createstatement() ;
db2資料庫
string url="jdbc:db2://localhost:5000/sample"; //sample為你的資料庫名
string user="admin";
string password="";
connection conn= drivermanager.getconnection(url,user,password);
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);
informix資料庫
class.forname("com.informix.jdbc.ifxdriver").newinstance();
string url = "jdbc:informix-sqli:
user=testuser;password=testpassword"; //mydb為資料庫名
connection conn= drivermanager.getconnection(url);
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);
Java連線資料庫
1 oracle8 8i 9i資料庫 用thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl 2 sql server7.0 2...
Java連線資料庫例項
此文中的 主要列出連線資料庫的關鍵 其他訪問資料庫 省略 1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost...
java遠端連線資料庫
我在eclipse執行報的錯,沒報錯就不管了。null,message from server host 202.197.100.120 is not allowed toconnect to this mysql server 在伺服器 一 開啟 mysql 控制台,輸入 二 輸入 如果報錯 my...