JDBC訪問資料庫過程

2021-09-28 19:32:48 字數 649 閱讀 6135

1.載入jdbc驅動程式

class.forname("com.mysql.jdbc.driver");
2.建立資料庫的連線

connection conn = drivermanager.getconnection("jdbc:mysql://localhost:3306/資料庫名?servertimezone=utc","資料庫使用者名稱","資料庫密碼");
3.執行sql語句

string sql = "select * from admin_info where name='"+name+"' and pwd='"+psw+"'";

preparedstatement st = conn.preparestatement(sql);

4.獲得查詢結果

resultset rs = st.executequery();
5.遍歷結果集

while(rs.next())
6.關閉資料庫連線

rs.close();

st.close();

conn.close();

JDBC訪問資料庫的步驟

1.裝載驅動程式 class.forname sun.jdbc.odbc.jdbcodbcdriver 使用jdbc odbc裝載驅動程式 class.forname com.mysql.jdbc.driver 使用mysql的驅動程式 class.forname com.microsoft.jdb...

JDBC訪問資料庫之MySql

what jdbc是一組api when 應用程式和資料庫通過jdbc實現資料互動 how 嚴格來說分為以下五步 class.forname 載入驅動 drivermanager獲取connection連線 建立statement 適用於簡單的sql語句,消耗小 preparedstatement ...

jdbc訪問資料庫封裝步驟。

jdbc鏈結資料庫進行增刪改查時,會出現許多冗餘比較強,不夠美觀的 對 進行合理的封裝不僅利於檢視,更對執行速度有很大的提公升。本片文章以插入操作為例,簡單介紹了資料庫操作時一些簡單的封裝,如果大家有更好的意見或建議,歡迎在討論區交流。題目 我要往員工表裡面插入一名員工資料,這名員工有以下屬性 na...