1、oracle8/8i/9i資料庫(thin模式)
//載入驅動
class.forname("oracle.jdbc.driver.oracledriver");
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="";
connection conn= drivermanager.getconnection(url,user,password);
3、sql server7.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="";
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:
user=testuser;password=testpassword";
//mydb為資料庫名
connection conn= drivermanager.getconnection(url);
6、mysql資料庫
class.forname("org.gjt.mm.mysql.driver").newinstance();
string url ="jdbc:mysql://localhost/mydb?
user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"
//mydb為資料庫名
//使用mysql資料庫驅動
mysqldb
jdbc:mysql://localhost:3306/dbname
com.mysql.jdbc.driver
user
pass
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的
多種資料庫操作
using system using system.data using system.configuration using system.linq using system.web using system.web.security using system.web.ui using syste...
Java多種資料庫連線
jdbc odbc string driver sun.jdbc.odbc.jdbcodbcdriver string url jdbc odbc dbsource dbsource為資料來源名 string username username 使用者名稱 string password passw...
jmeter多種資料庫指令碼
可根據不同的查詢型別設定 jdbc請求中的 query type 一 單條查詢語句 query type select statement 二 多條查詢語句 包括增刪改查 query type callable statement 另外jdbc配置元件中的 database url末尾加上?allo...