static int[] |
JdbcUtils.batchUpdate(Connection connection,
String sql,
PreparedStatementCallback callback) |
static Cursor<Tuple> |
JdbcUtils.cursor(Connection connection,
String sql,
PreparedStatementCallback callback) |
static List<Tuple> |
JdbcUtils.fetchAll(Connection connection,
String sql,
PreparedStatementCallback callback) |
static Tuple |
JdbcUtils.fetchOne(Connection connection,
String sql,
PreparedStatementCallback callback) |
static <T> T |
JdbcUtils.fetchOne(Connection connection,
String sql,
PreparedStatementCallback callback,
Class<T> requiredType) |
static int |
JdbcUtils.insert(Connection connection,
String sql,
PreparedStatementCallback callback) |
static PageableQuery<Tuple> |
JdbcUtils.pageableQuery(ConnectionFactory connectionFactory,
PageableSql pageableSql,
PreparedStatementCallback callback) |
static PageableQuery<Tuple> |
JdbcUtils.pageableQuery(ConnectionFactory connectionFactory,
String sql,
PreparedStatementCallback callback) |
static PageableQuery<Tuple> |
JdbcUtils.pageableQuery(DataSource dataSource,
PageableSql pageableSql,
PreparedStatementCallback callback) |
static PageableQuery<Tuple> |
JdbcUtils.pageableQuery(DataSource dataSource,
String sql,
PreparedStatementCallback callback) |
static void |
JdbcUtils.scan(ConnectionFactory connectionFactory,
PageableSql pageableSql,
PreparedStatementCallback callback,
int page,
int pageSize,
java.util.function.Consumer<List<Tuple>> consumer) |
static void |
JdbcUtils.scan(ConnectionFactory connectionFactory,
String sql,
PreparedStatementCallback callback,
int page,
int pageSize,
java.util.function.Consumer<List<Tuple>> consumer) |
static void |
JdbcUtils.scan(Connection connection,
String sql,
PreparedStatementCallback callback,
java.util.function.Consumer<Tuple> consumer) |
static int |
JdbcUtils.update(Connection connection,
String sql,
PreparedStatementCallback callback) |