パッケージ org.nkjmlab.sorm4j.sql
インタフェース Request
-
- 既知のサブインタフェースのリスト:
NamedParameterRequest,OrderedParameterRequest
public interface Request
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 <T> TexecuteQuery(FunctionHandler<ResultSet,T> resultSetHandler)Executes a query and apply the given handler to the returned result set.<T> List<T>executeQuery(RowMapper<T> rowMapper)Executes a query and apply the given mapper to the each row in returned result set.intexecuteUpdate()Executes an update and returns the number of rows modified.
-
-
-
メソッドの詳細
-
executeQuery
<T> T executeQuery(FunctionHandler<ResultSet,T> resultSetHandler)
Executes a query and apply the given handler to the returned result set.- 型パラメータ:
T-- パラメータ:
resultSetHandler-- 戻り値:
-
executeQuery
<T> List<T> executeQuery(RowMapper<T> rowMapper)
Executes a query and apply the given mapper to the each row in returned result set.- 型パラメータ:
T-- パラメータ:
rowMapper-- 戻り値:
-
executeUpdate
int executeUpdate()
Executes an update and returns the number of rows modified.- 戻り値:
-
-