|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SqlUpdate | |
---|---|
com.avaje.ebean | Core API (see Ebean and EbeanServer). |
Uses of SqlUpdate in com.avaje.ebean |
---|
Methods in com.avaje.ebean that return SqlUpdate | |
---|---|
SqlUpdate |
EbeanServer.createNamedSqlUpdate(String namedQuery)
Create a named sql update (refer Ebean.createNamedSqlUpdate(String) ). |
static SqlUpdate |
Ebean.createNamedSqlUpdate(String namedQuery)
Create a named sql update. |
SqlUpdate |
EbeanServer.createSqlUpdate(String sql)
Create a sql update for executing native dml statements (refer Ebean.createSqlUpdate(String) ). |
static SqlUpdate |
Ebean.createSqlUpdate(String sql)
Create a sql update for executing native dml statements. |
SqlUpdate |
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 |
SqlUpdate.setLabel(String label)
Set a descriptive text that can be put into the transaction log. |
SqlUpdate |
SqlUpdate.setNull(int position,
int jdbcType)
Set a null parameter via its index position. |
SqlUpdate |
SqlUpdate.setNull(String name,
int jdbcType)
Set a named parameter that has a null value. |
SqlUpdate |
SqlUpdate.setNullParameter(int position,
int jdbcType)
Set a null valued parameter using its index position. |
SqlUpdate |
SqlUpdate.setNullParameter(String name,
int jdbcType)
Set a named parameter that has a null value. |
SqlUpdate |
SqlUpdate.setParameter(int position,
Object value)
Set a parameter via its index position. |
SqlUpdate |
SqlUpdate.setParameter(String name,
Object param)
Set a named parameter value. |
SqlUpdate |
SqlUpdate.setTimeout(int secs)
Set the timeout in seconds. |
Methods in com.avaje.ebean with parameters of type SqlUpdate | |
---|---|
int |
EbeanServer.execute(SqlUpdate updSql)
Execute a SQL Update Delete or Insert statement using the current transaction. |
static int |
Ebean.execute(SqlUpdate sqlUpdate)
Execute a Sql Update Delete or Insert statement. |
int |
EbeanServer.execute(SqlUpdate updSql,
Transaction t)
Execute explicitly passing a transaction. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |