精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

JDBC Statement, PreparedStatement 和 CallableStatement

jdbc statement, preparedstatement 和 callablestatement

獲得了數據庫連接后,我們就可以與數據庫進行交互了。jdbc 中的 statement, callablestatement 和 preparedstatement 三個對象,定義了一系列的方法和屬性,可以用來向數據庫發送 sql 命令,接收數據。

接口 使用說明
statement 運行靜態 sql 語句時使用,statement 不能接收輸入參數。
preparedstatement 當計劃多次使用某條 sql 語句時使用,并且 preparedstatement 可以接收輸入參數。
callablestatement 用來調用數據庫的存儲過程,callablestatement 可以接收輸入參數。

 

1. statement 對象

1)創建 statement 對象

statement 對象由 connection 對象的 createstatement( ) 方法創建,用來執行靜態 sql 語句,如下所示:

statement stmt = null;
try {
   stmt = conn.createstatement( );
   . . .
}
catch (sqlexception e) {
   . . .
}
finally {
   . . .
}

一旦創建了一個 statement 對象,然后可以它的三個執行方法之一執行 sql 語句。

  • boolean execute(string sql) :這個方法常用來執行 sql ddl 語句。
  • int executeupdate(string sql) :返回 sql 語句執行時受影響的行數,常用來執行 insert,update 或 delete 語句。
  • resultset executequery(string sql) : 返回 resultset 對象。常用來執行 select 語句,會得到一個結果集 resultset。

2)關閉 statement 對象

正如關閉一個 connection 對象來釋放數據庫資源,出于同樣的原因,也應該關閉 statement 對象。

使用 close() 方法關閉 statement。

statement stmt = null;
try {
   stmt = conn.createstatement( );
   . . .
}
catch (sqlexception e) {
   . . .
}
finally {
   stmt.close();
}

 

2. preparedstatement 對象

preparedstatement 接口擴展了 statement 接口,給 statement 對象增加幾個高級功能。

它對 sql 語句進行預編譯,效率更高。另外,可以接收動態參數,避免 statement 中的 sql 注入問題。

1)創建 preparedstatement 對象

preparedstatement pstmt = null;
try {
   string sql = "update employees set age = ? where id = ?";
   pstmt = conn.preparestatement(sql);
   pstmt.setint(1, 22);
   . . .
}
catch (sqlexception e) {
   . . .
}
finally {
   . . .
}

在 jdbc 中參數使用 ?代表,在執行 sql 語句之前,必須提供每一個參數的值。

setxxx() 方法將值綁定到參數,其中 xxx 表示希望綁定到輸入參數值的 java 數據類型。如果忘了提供值,將收到一個sqlexception。

每個參數標記是由它的序號位置引用。第一標記表示位置 1,下一個位置為 2 等等。這種方法不同于 java 數組索引,以 0 開始。

2)關閉 preparedstatement 對象

正如關閉一個 connection 對象來釋放數據庫資源,出于同樣的原因,也應該關閉 preparedstatement 對象。

使用 close() 方法關閉 preparedstatement。

preparedstatement pstmt = null;
try {
   string sql = "update employees set age = ? where id = ?";
   pstmt = conn.preparestatement(sql);
   . . .
}
catch (sqlexception e) {
   . . .
}
finally {
   pstmt.close();
}

 

3. callablestatement 對象

正如一個connection對象創建statement和preparedstatement對象,它也創造了callablestatement對象這將被用來執行調用數據庫存儲過程。

1)創建 callablestatement 對象

假設需要執行以下 oracle 存儲過程:

create or replace procedure getempname 
   (emp_id in number, emp_first out varchar) as
begin
   select first into emp_first
   from employees
   where id = emp_id;
end;

存儲過程有三種類型的參數:in,out和inout。 preparedstatement對象只使用in參數。 callablestatement對象可以使用所有三個。

這里是每個的定義:

參數 描述
in 它的值是在創建sql語句時未知的參數。將值綁定到與 setxxx() 方法的參數。
out 其值由它返回的sql語句提供的參數。從 out 參數的 getxxx() 方法檢索值。
inout 同時提供輸入和輸出值的參數。綁定變量使用 setxxx() 方法,使用 getxxx() 方法檢索值。

下面的代碼顯示了使用 connection.preparecall() 方法獲得存儲過程 callablestatement 對象:

callablestatement cstmt = null;
try {
   string sql = "{call getempname (?, ?)}";
   cstmt = conn.preparecall (sql);
   . . .
}
catch (sqlexception e) {
   . . .
}
finally {
   . . .
}

sql 表示存儲過程,里面使用了參數占位符。

使用 callablestatement 對象是就像使用 preparedstatement 對象,執行該語句之前,必須將值綁定到所有的參數,否則將收到一個 sqlexception。

如果有 in 參數,只要按照 preparedstatement 對象相同的規則,使用 setxxx() 方法綁定的 java 數據類型。

當使用 out 和 inout 參數就必須采用額外的 callablestatement 及 registeroutparameter() 方法。registeroutparameter() 方法綁定數據類型到存儲過的返回值。

2)關閉 callablestatement 對象

正如關閉其他 statement 對象,出于同樣的原因,也應該關閉 callablestatement 對象。

正如關閉一個 connection 對象來釋放數據庫資源,出于同樣的原因,也應該關閉 callablestatementv 對象。

使用 close() 方法關閉 callablestatement。

callablestatement cstmt = null;
try {
   string sql = "{call getempname (?, ?)}";
   cstmt = conn.preparecall (sql);
   . . .
}
catch (sqlexception e) {
   . . .
}
finally {
   cstmt.close();
}
相關文章