通常使用jdbc獲取資料庫連線的步驟如下(以mysql為例):
1.使用db.conf配置檔案儲存資料庫配置資訊
注意配置檔案的寫法,不能加「」
注意配置檔案的路徑,當期路徑為載入類的同級路徑
jdbc_driver=com.mysql.jdbc.driver
db_url=jdbc:mysql:
db_user=root
db_password=root
2.通過connection獲取資料庫連線
/**
* 建立連線,並且獲取相關屬性
* * 假設db.conf與此類在同一級下
* * @author terryyang
* */
public class connectionprovider catch (ioexception e) finally catch (ioexception e)
} }public connectionprovider() catch (classnotfoundexception e)
} /**
* 獲取資料庫連線
* * @return
* @throws sqlexception
*/public connection getconneciton() throws sqlexception
}
3.使用resultset獲取結果集
public class main
rs.close();
s.close();
connection.close();
} catch (sqlexception e)
}}
輸出結果:ok
1 tt 10 100
2 tt 10 100
3 tt 10 100
4 tt 10 100
這是乙個簡單的資料庫連線示例,接下來會介紹複雜一點的資料庫連線池和事務操作。
JDBC連線資料庫操作(一)
開發環境 myeclipse 2014 在專案檔案下新建乙個名為lib的資料夾,把jar包放進lib。單擊滑鼠右鍵 build path add to build path ok成功匯入jar包。註冊驅動 class.forname com.mysql.jdbc.driver 連線資料庫 drive...
JDBC連線資料庫
雖然現在用很多方法來實現應用程式與資料庫後台的連線操作,但是做為一名新手,真正理解和掌握使用jdbc來連線資料庫是非常有必要的,因為它是基礎。下面就說說如何實現jdbc連線資料庫。url jdbc mysql localhost 3306 bookmanage?useunicode true cha...
JDBC 連線資料庫
附 驅動包以及關鍵字 mysql class.forname org.gjt.mm.mysql.driver cn drivermanager.getconnection jdbc mysql mydbcomputernameorip 3306 mydatabasename susr,spwd po...