public class ExecuteUpdateResultCheckStyle extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
static ExecuteUpdateResultCheckStyle |
COUNT
Perform row-count checking.
|
static ExecuteUpdateResultCheckStyle |
NONE
Do not perform checking.
|
static ExecuteUpdateResultCheckStyle |
PARAM
Essentially the same as
COUNT except that the row count actually
comes from an output parameter registered as part of a
CallableStatement . |
Modifier and Type | Method and Description |
---|---|
static ExecuteUpdateResultCheckStyle |
determineDefault(String customSql,
boolean callable) |
static ExecuteUpdateResultCheckStyle |
parse(String name) |
public static final ExecuteUpdateResultCheckStyle NONE
CallableStatement
execution in which the
checks are being performed explicitly and failures are handled through
propogation 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...public static ExecuteUpdateResultCheckStyle parse(String name)
public static ExecuteUpdateResultCheckStyle determineDefault(String customSql, boolean callable)
Copyright © 2002-2017 Red Hat Middleware, LLC. All Rights Reserved