| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.hibernate.engine.ExecuteUpdateResultCheckStyle
public class ExecuteUpdateResultCheckStyle
For persistence operations (INSERT, UPDATE, DELETE) what style of determining results (success/failure) is to be used.
| Field Summary | |
|---|---|
| static ExecuteUpdateResultCheckStyle | COUNTPerform row-count checking. | 
| static ExecuteUpdateResultCheckStyle | NONEDo not perform checking. | 
| static ExecuteUpdateResultCheckStyle | PARAMEssentially the same as COUNTexcept that the row count actually
 comes from an output parameter registered as part of aCallableStatement. | 
| Method Summary | |
|---|---|
| static ExecuteUpdateResultCheckStyle | determineDefault(String customSql,
                 boolean callable) | 
| static ExecuteUpdateResultCheckStyle | parse(String name) | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
|---|
public static final ExecuteUpdateResultCheckStyle NONE
CallableStatement execution in which the
 checks are being performed explicitly and failures are handled through
 propogation of SQLExceptions.
public static final ExecuteUpdateResultCheckStyle COUNT
PreparedStatement.executeUpdate() and
 Statement.executeBatch().  These values are checked
 against some expected count.
public static final ExecuteUpdateResultCheckStyle PARAM
COUNT except that the row count actually
 comes from an output parameter registered as part of a
 CallableStatement.  This style explicitly prohibits
 statement batching from being used...
| Method Detail | 
|---|
public static ExecuteUpdateResultCheckStyle parse(String name)
public static ExecuteUpdateResultCheckStyle determineDefault(String customSql,
                                                             boolean callable)
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||