Uses of Interface
io.ebean.SqlUpdate
Packages that use SqlUpdate
-
Uses of SqlUpdate in io.ebean
Modifier and TypeMethodDescriptionSqlUpdate.setArrayParameter
(String name, Collection<?> values) Bind the named multi-value array parameter which we would use with Postgres ANY.SqlUpdate.setAutoTableMod
(boolean isAutoTableMod) Set this to false if you don't want eBean to automatically deduce the table modification information and process it.SqlUpdate.setGetGeneratedKeys
(boolean getGeneratedKeys) Set to true when we want to use getGeneratedKeys with this statement.Set a descriptive text that can be put into the transaction log.SqlUpdate.setNull
(int position, int jdbcType) Set a null parameter via its index position.Set a named parameter that has a null value.SqlUpdate.setNullParameter
(int position, int jdbcType) Set a null valued parameter using its index position.SqlUpdate.setNullParameter
(String name, int jdbcType) Set a named parameter that has a null value.SqlUpdate.setParameter
(int position, Object value) Set a parameter via its index position.SqlUpdate.setParameter
(Object value) Set the next bind parameter by position.SqlUpdate.setParameter
(String name, Object param) Set a named parameter value.SqlUpdate.setParameters
(Object... values) Set one of more positioned parameters.SqlUpdate.setTimeout
(int secs) Set the timeout in seconds.Look to execute a native sql insert update or delete statement.static SqlUpdate
Look to execute a native sql insert update or delete statement.Modifier and TypeMethodDescriptionint
Execute a Sql Update Delete or Insert statement.int
Database.execute
(SqlUpdate updSql, Transaction transaction) Execute explicitly passing a transaction.