1,mysql:
string driver="com.mysql.jdbc.driver"; //驅動程式
string url="jdbc:mysql://localhost:3306/db_name"?useunicode=true&characterencoding=utf-8; //連線的url,db_name為資料庫名,注意修改編碼型別
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).new instance();
connection con=drivermanager.getconnection(url,username,password);
2,microsoft sql server 2.0驅動(3個jar的那個):
string driver="com.microsoft.jdbc.sqlserver.sqlserverdriver"; //連線sql資料庫的方法
string url="jdbc:microsoft:sqlserver://localhost:1433;databasename=db_name"; //db_name為資料庫名
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).new instance(); //載入資料可驅動
connection con=drivermanager.getconnection(url,username,password); //
3,microsoft sql server 3.0驅動(1個jar的那個): // 老紫竹完善
string driver="com.microsoft.sqlserver.jdbc.sqlserverdriver"; //連線sql資料庫的方法
string url="jdbc:sqlserver://localhost:1433;databasename=db_name"; //db_name為資料庫名
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).new instance(); //載入資料可驅動
connection con=drivermanager.getconnection(url,username,password); //
4,sysbase:
string driver="com.sybase.jdbc.sybdriver"; //驅動程式
string url="jdbc:sysbase://localhost:5007/db_name"; //db_name為資料可名
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).newinstance();
connection con=drivermanager.getconnection(url,username,password);
5,oracle(用thin模式):
string driver="oracle.jdbc.driver.oracledriver"; //連線資料庫的方法
string url="jdbc:oracle:thin:@loaclhost:1521:orcl"; //orcl為資料庫的sid
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).newinstance(); //載入資料庫驅動
connection con=drivermanager.getconnection(url,username,password);
6,postgresql:
string driver="org.postgresql.driver"; //連線資料庫的方法
string url="jdbc:postgresql://localhost/db_name"; //db_name為資料可名
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).newinstance();
connection con=drivermanager.getconnection(url,username,password);
8,informix:
string driver="com.informix.jdbc.ifxdriver";
string url="jdbc:informix-sqli://localhost:1533/db_name:informixser=myserver"; //db_name為資料可名
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).newinstance();
connection con=drivermanager.getconnection(url,username,password);
9,jdbc-odbc:
string driver="sun.jdbc.odbc.jdbcodbcdriver";
string url="jdbc:odbc:dbsource"; //dbsource為資料來源名
string username="username"; //使用者名稱
string password="password"; //密碼
class.forname(driver).newinstance();
connection con=drivermanager.getconnection(url,username,password);
資料庫常用連線
第一 常用普通方法?建立資料庫鏈結 conn mysqli connect localhost,root 123 ordie 資料庫鏈結錯誤 選擇某個資料庫 mysqli select db 資料庫名,conn mysqli set charset utf8 conn 執行mysql語句 resul...
常用資料庫的連線
配置web也差不多,不過可以用myeclipse幫助目錄下的 軟體公升級 software updates 來選裝web開發外掛程式,然後設定環境路徑和解釋源路徑。tomcat安裝完畢後要設定一下本地的jdk目錄。0檢舉 2009 03 10 21 27 xianer0405 二級 此文中的 主要列...
常用資料庫連線方法
mysql string driver com.mysql.jdbc.driver 驅動程式 string url jdbc mysql localhost 3306 db name useunicode true characterencoding utf 8 連線的url,db name為資料庫...