public interface UpdateDAO
修飾子とタイプ | メソッドと説明 |
---|---|
void |
addBatch(String sqlID,
Object bindParams)
非推奨です。
addBatchの代わりに
executeBatch(List)
を使用すること |
int |
execute(String sqlID,
Object bindParams)
引数sqlIDで指定されたSQLを実行して、結果件数を返却する。
|
int |
executeBatch()
非推奨です。
executeBatchの代わりに
executeBatch(List)
を使用すること |
int |
executeBatch(List<SqlHolder> sqlHolders)
バッチ更新処理を行うメソッド。
|
int execute(String sqlID, Object bindParams)
sqlID
- 実行するSQLのIDbindParams
- SQLにバインドする値を格納したオブジェクト@Deprecated void addBatch(String sqlID, Object bindParams)
executeBatch(List)
を使用することsqlID
- 実行するSQLのIDbindParams
- SQLにバインドする値を格納したオブジェクト@Deprecated int executeBatch()
executeBatch(List)
を使用することCopyright © 2014. All Rights Reserved.