SqlUpdate |
Database.createSqlUpdate(String sql) |
Deprecated.
|
static SqlUpdate |
DB.createSqlUpdate(String sql) |
Deprecated.
|
static SqlUpdate |
Ebean.createSqlUpdate(String sql) |
Deprecated.
|
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.setGetGeneratedKeys(boolean getGeneratedKeys) |
Set to true when we want to use getGeneratedKeys with this statement.
|
SqlUpdate |
SqlUpdate.setLabel(String label) |
Set a descriptive text that can be put into the transaction log.
|
SqlUpdate |
SqlUpdate.setNextParameter(Object value) |
Deprecated.
|
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(Object value) |
Set the next bind parameter by position.
|
SqlUpdate |
SqlUpdate.setParameter(String name,
Object param) |
Set a named parameter value.
|
SqlUpdate |
SqlUpdate.setParameters(Object... values) |
Set one of more positioned parameters.
|
SqlUpdate |
SqlUpdate.setParams(Object... values) |
Deprecated.
|
SqlUpdate |
SqlUpdate.setTimeout(int secs) |
Set the timeout in seconds.
|
SqlUpdate |
Database.sqlUpdate(String sql) |
Look to execute a native sql insert update or delete statement.
|
static SqlUpdate |
DB.sqlUpdate(String sql) |
Look to execute a native sql insert update or delete statement.
|