經常因為鏈結字串記不住或者記錯的原因浪費時間,終於有時間把常用的總結出來,要用就簡單了1、鏈結sqlserver20002、鏈結mysql
3、jdbc-odbc橋鏈結
4、鏈結oracle
oracle.jdbc.driver.oracledriver
jdbc:oracle:thin:@localhost:1521:ora9
5、連線db2
jdbc:db2://192.168.1.10/50000:rdb
6、鏈結sybase
com.sybase.jdbc3.jdbc.sybdriver
jdbc:sybase:tds:192.168.100.252:4500/mydb
7、鏈結informix
com.informix.jdbc.ifxdriver
jdbc:informix-sqli://
192.168.100.252:1533/mydb:informixserver=myserver
8、連線postgresql
驅動類:
org.postgresql.driver
jdbc:postgresql://localhost/mydb
Jdbc 鏈結資料庫
try rs.close ps.close conn.close try catch exception e if rs null if ps null if conn null catch sqlexception e console cpbm 09110444 資源已經釋放!ps is not ...
JDBC鏈結資料庫
1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...
jdbc鏈結資料庫
1.鏈結資料庫 1.註冊驅動 2.獲取鏈結物件 3.獲取語句執行物件 4.處理結果集 5.釋放資源 public static void main string args throws classnotfoundexception,sqlexception 2.專案通用格式 1.view層,處理頁面...