- doBatchUpdate(String, H2Helper.PrepareCallback) - Method in class net.digger.db.H2Helper
-
Perform database batch update transaction, doing Connection and PreparedStatement setup and cleanup.
- doBatchUpdate(Connection, String, H2Helper.PrepareCallback) - Method in class net.digger.db.H2Helper
-
Perform database batch update transaction, doing PreparedStatement setup and cleanup.
- doQuery(String, H2Helper.PrepareCallback, H2Helper.ResultCallback<T>) - Method in class net.digger.db.H2Helper
-
Perform database query, doing Connection, PreparedStatement and ResultSet setup and cleanup.
- doQuery(Connection, String, H2Helper.PrepareCallback, H2Helper.ResultCallback<T>) - Method in class net.digger.db.H2Helper
-
Perform database query, doing PreparedStatement and ResultSet setup and cleanup.
- doTransaction(H2Helper.TransactionCallback<T>) - Method in class net.digger.db.H2Helper
-
Perform a transaction, doing Connection setup and cleanup, and rollback if SQLException thrown.
- doTransaction(Connection, H2Helper.TransactionCallback<T>) - Method in class net.digger.db.H2Helper
-
Perform a transaction, doing rollback if SQLException thrown.
- doUpdate(String, H2Helper.PrepareCallback) - Method in class net.digger.db.H2Helper
-
Perform database update, doing Connection and PreparedStatement setup and cleanup.
- doUpdate(Connection, String, H2Helper.PrepareCallback) - Method in class net.digger.db.H2Helper
-
Perform database update, doing PreparedStatement setup and cleanup.
- doUpdate(String, H2Helper.PrepareCallback, H2Helper.GeneratedKeysCallback<T>) - Method in class net.digger.db.H2Helper
-
Perform database update transaction, returning generated keys, doing Connection, PreparedStatement and ResultSet setup and cleanup.
- doUpdate(Connection, String, H2Helper.PrepareCallback, H2Helper.GeneratedKeysCallback<T>) - Method in class net.digger.db.H2Helper
-
Perform database update transaction, returning generated keys, doing PreparedStatement and ResultSet setup and cleanup.