Uses of Interface
io.ebean.SqlUpdate
-
Uses of SqlUpdate in io.ebean
Methods in io.ebean that return SqlUpdate Modifier and Type Method Description SqlUpdateDatabase. createSqlUpdate(String sql)Deprecated.static SqlUpdateDB. createSqlUpdate(String sql)Deprecated.static SqlUpdateEbean. createSqlUpdate(String sql)Deprecated.SqlUpdateSqlUpdate. setAutoTableMod(boolean isAutoTableMod)Set this to false if you don't want eBean to automatically deduce the table modification information and process it.SqlUpdateSqlUpdate. setGetGeneratedKeys(boolean getGeneratedKeys)Set to true when we want to use getGeneratedKeys with this statement.SqlUpdateSqlUpdate. setLabel(String label)Set a descriptive text that can be put into the transaction log.SqlUpdateSqlUpdate. setNextParameter(Object value)Deprecated.SqlUpdateSqlUpdate. setNull(int position, int jdbcType)Set a null parameter via its index position.SqlUpdateSqlUpdate. setNull(String name, int jdbcType)Set a named parameter that has a null value.SqlUpdateSqlUpdate. setNullParameter(int position, int jdbcType)Set a null valued parameter using its index position.SqlUpdateSqlUpdate. setNullParameter(String name, int jdbcType)Set a named parameter that has a null value.SqlUpdateSqlUpdate. setParameter(int position, Object value)Set a parameter via its index position.SqlUpdateSqlUpdate. setParameter(Object value)Set the next bind parameter by position.SqlUpdateSqlUpdate. setParameter(String name, Object param)Set a named parameter value.SqlUpdateSqlUpdate. setParameters(Object... values)Set one of more positioned parameters.SqlUpdateSqlUpdate. setParams(Object... values)Deprecated.SqlUpdateSqlUpdate. setTimeout(int secs)Set the timeout in seconds.SqlUpdateDatabase. sqlUpdate(String sql)Look to execute a native sql insert update or delete statement.static SqlUpdateDB. sqlUpdate(String sql)Look to execute a native sql insert update or delete statement.Methods in io.ebean with parameters of type SqlUpdate Modifier and Type Method Description intDatabase. execute(SqlUpdate sqlUpdate)Execute a Sql Update Delete or Insert statement.intDatabase. execute(SqlUpdate updSql, Transaction transaction)Execute explicitly passing a transaction.static intEbean. execute(SqlUpdate sqlUpdate)Deprecated.Execute a Sql Update Delete or Insert statement.