JDBC訪問資料庫七個步驟

2021-06-08 22:41:35 字數 734 閱讀 8840

以連線mysql資料庫為例,其他的資料庫都差不多,如下:

1)建立sql語句

string sql="";

2)註冊驅動

class.forname(string drivername);

3)建立連線

connection con = drivermanager.getconnection(string url,string username,string password);

4)獲取statement物件

statement state = con.createstatement();

或者preparedstatement prestm = con.preparedstatement(sql);

prestm.setstring(1,"");//設定引數

5)執行sql語句

result rs = state.executequery(sql);

int i = state.executeupdate(sql);

或者result rs = prestm.executequery(sql);

int i = prestm.executeupdate(sql);

6)遍歷結果集

while(rs.next())

7)關閉連線

按順序從內到外關

rs.close();

state.close();

con.close();

JDBC運算元據庫的七個基本步驟

使用反射方式載入驅動器 class.forname com.mysql.jdbc.driver 建立連線資料庫物件 string url jdbc mysql localhost 127.0.0.1 3306 表名?characterencoding utf 8 string username 使用...

JDBC訪問資料庫的步驟

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

jdbc訪問資料庫封裝步驟。

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