@Preview(value="3.0") public interface SqlQuerier
限定符和类型 | 方法和说明 |
---|---|
SqlQuerier |
params(java.util.Collection<java.lang.Object[]> argsList)
绑定参数(用于批处理)
|
<S> SqlQuerier |
params(java.util.Collection<S> argsList,
java.util.function.Supplier<StatementBinder<S>> binderSupplier)
绑定参数(用于批处理)
|
SqlQuerier |
params(java.lang.Object... args)
绑定参数
|
<S> SqlQuerier |
params(S args,
StatementBinder<S> binder)
绑定参数
|
<T> T |
queryRow(java.lang.Class<T> tClass)
查询并获取行
|
<T> T |
queryRow(RowConverter<T> converter)
查询并获取行
|
<T> RowIterator<T> |
queryRowIterator(int fetchSize,
java.lang.Class<T> tClass)
查询并获取行遍历器(流式读取)
|
<T> RowIterator<T> |
queryRowIterator(int fetchSize,
RowConverter<T> converter)
查询并获取行遍历器(流式读取)
|
<T> java.util.List<T> |
queryRowList(java.lang.Class<T> tClass)
查询并获取行列表
|
<T> java.util.List<T> |
queryRowList(RowConverter<T> converter)
查询并获取行列表
|
<T> T |
queryValue()
查询并获取值
|
<T> java.util.List<T> |
queryValueList()
查询并获取值列表
|
int |
update()
更新(插入、或更新、或删除)
|
int[] |
updateBatch()
批量更新(插入、或更新、或删除)
|
<T> java.util.List<T> |
updateBatchReturnKeys()
批量更新并返回主键(插入、或更新、或删除)
|
<T> T |
updateReturnKey()
更新并返回主键
|
SqlQuerier params(java.lang.Object... args)
<S> SqlQuerier params(S args, StatementBinder<S> binder)
SqlQuerier params(java.util.Collection<java.lang.Object[]> argsList)
<S> SqlQuerier params(java.util.Collection<S> argsList, java.util.function.Supplier<StatementBinder<S>> binderSupplier)
@Nullable <T> T queryValue() throws java.sql.SQLException
java.sql.SQLException
@Nullable <T> java.util.List<T> queryValueList() throws java.sql.SQLException
java.sql.SQLException
@Nullable <T> T queryRow(java.lang.Class<T> tClass) throws java.sql.SQLException
tClass
- Map.class or T.classjava.sql.SQLException
@Nullable <T> T queryRow(RowConverter<T> converter) throws java.sql.SQLException
java.sql.SQLException
@Nullable <T> java.util.List<T> queryRowList(java.lang.Class<T> tClass) throws java.sql.SQLException
tClass
- Map.class or T.classjava.sql.SQLException
@Nullable <T> java.util.List<T> queryRowList(RowConverter<T> converter) throws java.sql.SQLException
java.sql.SQLException
<T> RowIterator<T> queryRowIterator(int fetchSize, java.lang.Class<T> tClass) throws java.sql.SQLException
tClass
- Map.class or T.classjava.sql.SQLException
<T> RowIterator<T> queryRowIterator(int fetchSize, RowConverter<T> converter) throws java.sql.SQLException
java.sql.SQLException
int update() throws java.sql.SQLException
java.sql.SQLException
@Nullable <T> T updateReturnKey() throws java.sql.SQLException
java.sql.SQLException
int[] updateBatch() throws java.sql.SQLException
java.sql.SQLException
<T> java.util.List<T> updateBatchReturnKeys() throws java.sql.SQLException
java.sql.SQLException