public class

ExecuteUpdateResultCheckStyle

extends Object
implements Serializable
java.lang.Object
   ↳ org.hibernate.engine.ExecuteUpdateResultCheckStyle

Class Overview

For persistence operations (INSERT, UPDATE, DELETE) what style of determining results (success/failure) is to be used.

Summary

Fields
public static final ExecuteUpdateResultCheckStyle COUNT Perform row-count checking.
public static final ExecuteUpdateResultCheckStyle NONE Do not perform checking.
public static final ExecuteUpdateResultCheckStyle PARAM Essentially the same as COUNT except that the row count actually comes from an output parameter registered as part of a CallableStatement.
Public Methods
static ExecuteUpdateResultCheckStyle determineDefault(String customSql, boolean callable)
static ExecuteUpdateResultCheckStyle parse(String name)
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final ExecuteUpdateResultCheckStyle COUNT

Perform row-count checking. Row counts are the int values returned by both executeUpdate() and executeBatch(). These values are checked against some expected count.

public static final ExecuteUpdateResultCheckStyle NONE

Do not perform checking. Either user simply does not want checking, or is indicating a CallableStatement execution in which the checks are being performed explicitly and failures are handled through propogation of SQLExceptions.

public static final ExecuteUpdateResultCheckStyle PARAM

Essentially the same as 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...

Public Methods

public static ExecuteUpdateResultCheckStyle determineDefault (String customSql, boolean callable)

public static ExecuteUpdateResultCheckStyle parse (String name)