|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ExecuteUpdateResultCheckStyle> org.hibernate.engine.spi.ExecuteUpdateResultCheckStyle
public enum ExecuteUpdateResultCheckStyle
For persistence operations (INSERT, UPDATE, DELETE) what style of determining results (success/failure) is to be used.
Enum Constant Summary | |
---|---|
COUNT
Perform row-count checking. |
|
NONE
Do not perform checking. |
|
PARAM
Essentially the same as COUNT except that the row count actually
comes from an output parameter registered as part of a
CallableStatement . |
Method Summary | |
---|---|
static ExecuteUpdateResultCheckStyle |
determineDefault(String customSql,
boolean callable)
|
static ExecuteUpdateResultCheckStyle |
fromExternalName(String name)
|
static ExecuteUpdateResultCheckStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ExecuteUpdateResultCheckStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ExecuteUpdateResultCheckStyle NONE
CallableStatement
execution in which the
checks are being performed explicitly and failures are handled through
propagation of SQLException
s.
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[] values()
for (ExecuteUpdateResultCheckStyle c : ExecuteUpdateResultCheckStyle.values()) System.out.println(c);
public static ExecuteUpdateResultCheckStyle valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static ExecuteUpdateResultCheckStyle fromExternalName(String name)
public static ExecuteUpdateResultCheckStyle determineDefault(String customSql, boolean callable)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |