Package cc.carm.lib.easysql.api.action
Interface PreparedSQLUpdateAction<T extends java.lang.Number>
-
- All Superinterfaces:
SQLAction<T>
,SQLUpdateAction<T>
public interface PreparedSQLUpdateAction<T extends java.lang.Number> extends SQLUpdateAction<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PreparedSQLUpdateAction<T>
setParams(@Nullable java.lang.Iterable<java.lang.Object> params)
设定SQL语句中所有 ?PreparedSQLUpdateAction<T>
setParams(java.lang.Object... params)
设定SQL语句中所有 ?-
Methods inherited from interface cc.carm.lib.easysql.api.SQLAction
defaultExceptionHandler, execute, execute, execute, execute, executeAsync, executeAsync, executeAsync, executeFunction, executeFunction, executeFuture, executeFuture, getActionUUID, getCreateTime, getCreateTime, getManager, getShortID, getSQLContent, getSQLContents, handleException, setExceptionHandler
-
Methods inherited from interface cc.carm.lib.easysql.api.action.SQLUpdateAction
returnGeneratedKey, returnGeneratedKey
-
-
-
-
Method Detail
-
setParams
PreparedSQLUpdateAction<T> setParams(java.lang.Object... params)
设定SQL语句中所有 ? 对应的参数- Parameters:
params
- 参数内容- Returns:
PreparedSQLUpdateAction
-
setParams
PreparedSQLUpdateAction<T> setParams(@Nullable @Nullable java.lang.Iterable<java.lang.Object> params)
设定SQL语句中所有 ? 对应的参数- Parameters:
params
- 参数内容- Returns:
PreparedSQLUpdateAction
- Since:
- 0.4.0
-
-