Uses of Interface
cc.carm.lib.easysql.api.action.PreparedSQLUpdateBatchAction
-
Packages that use PreparedSQLUpdateBatchAction Package Description cc.carm.lib.easysql.api cc.carm.lib.easysql.api.action -
-
Uses of PreparedSQLUpdateBatchAction in cc.carm.lib.easysql.api
Methods in cc.carm.lib.easysql.api that return types with arguments of type PreparedSQLUpdateBatchAction Modifier and Type Method Description InsertBuilder<PreparedSQLUpdateBatchAction<java.lang.Integer>>
SQLManager. createInsertBatch(@NotNull java.lang.String tableName)
创建支持多组数据的插入操作。default @NotNull InsertBuilder<PreparedSQLUpdateBatchAction<java.lang.Integer>>
SQLTable. createInsertBatch()
default @NotNull InsertBuilder<PreparedSQLUpdateBatchAction<java.lang.Integer>>
SQLTable. createInsertBatch(@NotNull SQLManager sqlManager)
ReplaceBuilder<PreparedSQLUpdateBatchAction<java.lang.Integer>>
SQLManager. createReplaceBatch(@NotNull java.lang.String tableName)
创建支持多组数据的替换操作。default @NotNull ReplaceBuilder<PreparedSQLUpdateBatchAction<java.lang.Integer>>
SQLTable. createReplaceBatch()
default @NotNull ReplaceBuilder<PreparedSQLUpdateBatchAction<java.lang.Integer>>
SQLTable. createReplaceBatch(@NotNull SQLManager sqlManager)
-
Uses of PreparedSQLUpdateBatchAction in cc.carm.lib.easysql.api.action
Methods in cc.carm.lib.easysql.api.action that return PreparedSQLUpdateBatchAction Modifier and Type Method Description PreparedSQLUpdateBatchAction<T>
PreparedSQLUpdateBatchAction. addParamsBatch(java.lang.Object... params)
添加一组SQL语句中所有 ?PreparedSQLUpdateBatchAction<T>
PreparedSQLUpdateBatchAction. returnGeneratedKeys()
设定该操作返回自增键序列。<N extends java.lang.Number>
PreparedSQLUpdateBatchAction<N>PreparedSQLUpdateBatchAction. returnGeneratedKeys(java.lang.Class<N> keyTypeClass)
设定该操作返回自增键序列。PreparedSQLUpdateBatchAction<T>
PreparedSQLUpdateBatchAction. setAllParams(java.lang.Iterable<java.lang.Object[]> allParams)
设定多组SQL语句中所有 ?
-