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

2021-09-20 06:10:14 字數 1024 閱讀 9444

使用反射方式載入驅動器

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

string url = "jdbc:mysql://localhost[127.0.0.1]:3306/表名?characterencoding=utf-8"

string username = "使用者名稱";

string password = "密碼";

connection conn = drivermanage.getconnection(url,username,password);

建立運算元據庫物件

statement stat = conn.createstatement() || conn.preparestatement();
建立sql語句

string sql = "select * from 表名 where 【約束條件】";

string sql = "insert into 表名 列名 = 值 where 【約束條件】";

string sql = "delete from 表名 where 【約束條件】";

string sql = "update 表名 set 列名 = 值 where 【約束條件】"

執行sql語句,並建立結果集

resultset rs = stat.executequery() || stat.executeupdate();
操作結果集

while(rs.next())
釋放資源

//先建立的後釋放

if(rs != null) rs.close(); //釋放結果集物件

if(stat != null) stat.close(); //釋放運算元據庫物件

if(conn != null) conn.close(); //釋放連線資料庫物件

增加:create 讀取查詢:retrieve 更新:update 刪除:delete

JDBC運算元據庫的程式設計步驟

第一步,註冊驅動程式 class.forname 資料庫驅動的完整類名 第二步,獲取乙個資料庫的連線 connection conn drivermanager.getconnection 連線url 使用者名稱 密碼 第三步,建立乙個會話 statement stmt conn.createsta...

JDBC訪問資料庫七個步驟

以連線mysql資料庫為例,其他的資料庫都差不多,如下 1 建立sql語句 string sql 2 註冊驅動 class.forname string drivername 3 建立連線 connection con drivermanager.getconnection string url,s...

原始的Jdbc運算元據庫

載入資料庫驅動 class.forname com.mysql.jdbc.driver 通過驅動類連線資料庫 connecttion con drivermanger.getconnection jdbc mysql localhost 3306 資料庫名 使用者名稱 密碼 定義sql語句 stri...