Package cc.carm.lib.easysql.api.action
Interface PreparedSQLUpdateAction
-
- All Superinterfaces:
SQLAction<java.lang.Integer>,SQLUpdateAction
- All Known Implementing Classes:
PreparedSQLUpdateActionImpl
public interface PreparedSQLUpdateAction extends SQLUpdateAction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PreparedSQLUpdateActionsetParams(@Nullable java.lang.Iterable<java.lang.Object> params)设定SQL语句中所有 ?PreparedSQLUpdateActionsetParams(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, getActionUUID, getCreateTime, getManager, getShortID, getSQLContent, handleException, setExceptionHandler
-
Methods inherited from interface cc.carm.lib.easysql.api.action.SQLUpdateAction
returnGeneratedKey, setKeyIndex, setReturnGeneratedKey
-
-
-
-
Method Detail
-
setParams
PreparedSQLUpdateAction setParams(java.lang.Object... params)
设定SQL语句中所有 ? 对应的参数- Parameters:
params- 参数内容- Returns:
PreparedSQLUpdateAction
-
setParams
PreparedSQLUpdateAction setParams(@Nullable @Nullable java.lang.Iterable<java.lang.Object> params)
设定SQL语句中所有 ? 对应的参数- Parameters:
params- 参数内容- Returns:
PreparedSQLUpdateAction
-
-