部分廠商jdbc驅動的URL

2021-08-15 17:38:33 字數 2286 閱讀 8644

部分資料庫使用jdbc連線的方式。

1、oracle資料庫

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);  

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為資料庫名 

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的

class.forname("sun.jdbc.odbc.jdbcodbcdriver") ;

connection conn = drivermanager.getconnection(url,"","");

statement stmtnew=conn.createstatement() ; 

MySQL之JDBC驅動程式設計URL說明

jdbc url引數說明 url格式 jdbc mysql hostname port dbname param1 value1 m2 value2 mysql之jdbc驅動 引數名取值預設 user 資料庫使用者名稱 無password 資料庫使用者口令 無autoreconnect 當資料庫連線...

jdbc載入驅動的方式

方法一 載入驅動,根據名字把類裝載到虛擬機器中 推薦使用此方法 class.forname com.mysql.jdbc.driver 方法二 載入驅動 這裡可以載入多個資料庫驅動,並進行了例項化 驅動例項化了兩次 drivermanager.registerdriver new com.mysql...

url的組成部分

分析 從上面的url可以看出,乙個完整的url包括以下幾部分 1.協議部分 protoca l 該url的協議部分為 http 這代表網頁使用的是http協議。在internet中可以使用多種協議,如http,ftp等等本例中使用的是http協議。在 http 後面的 為分隔符 3.埠部分 port...