學習MySQL和資料庫(九) DBUtils

2021-10-10 08:50:50 字數 890 閱讀 4522

開源的jdbc工具類庫,對jdbc的簡單封裝

該類封裝了sql的執行,是線性安全的。

queryrunner類提供了兩個構造方法:

public int update(connection conn,string sql,object…… params)throws sqlexception:

用來執行乙個更新(插入,更新或刪除)操作

public t insert(connection conn,string sql,resultsethandlerrsh,object…… params)throws sqlexception:

只支援insert語句,返回值:an object generated by the handler.即自動生成的鍵值

public int batch(connection conn,string sql,object params)throws sqlexception:

insert,update,delete語句

public t insertbatch(connection conn,string sql,resultsethandlerrsh,object params)throws sqlexception:

只支援insert語句

public object query(connection conn,string sql,resultsethandler rsh,object…… params)throws sqlexception:

執行乙個查詢操作,在中國查詢中,物件陣列中的每個元素值被用來作為查詢語句的置換引數。該方法會自行處理preparedstatement和resultset的建立和關閉

MySQL查詢資料庫表和資料庫字段

information schema資訊資料庫 mysql中存在乙個自帶的資料庫information schema,其中儲存著關於mysql伺服器所維護的所有其他資料庫的資訊。查詢test database中的檢視 select from information schema.tables whe...

mysql實驗九 實驗九 mysql資料庫基礎

實驗九 mysql資料庫基礎 在編寫程式之前修改一下選項 控制面板 管理工具 服務 apache2.2 啟動型別 手動 啟動 控制面板 管理工具 服務 mysql 啟動型別 手動 啟動 開啟ie,測試 http localhost 8000 phpmyadmin 實驗目的 熟悉mysql伺服器的啟動...

資料庫和資料庫物件

系統資料庫是指安裝完mysql伺服器後,會附帶的一些資料庫,系統資料庫會記錄一些必需的資訊,使用者不能直接修改這些系統資料庫。各個系統資料庫的作用如下 information schema 主要儲存系統中的一些資料庫物件資訊,如使用者表資訊 列資訊 許可權資訊 字符集資訊和分割槽資訊等。perfor...