Package org.hibernate.jdbc
Class Expectations.BasicExpectation
- java.lang.Object
-
- org.hibernate.jdbc.Expectations.BasicExpectation
-
- All Implemented Interfaces:
Expectation
- Direct Known Subclasses:
Expectations.BasicParamExpectation
- Enclosing class:
- Expectations
public static class Expectations.BasicExpectation extends java.lang.Object implements Expectation
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBasicExpectation(int expectedRowCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanBeBatched()Is it acceptable to combiner this expectation with statement batching?protected intdetermineRowCount(int reportedRowCount, java.sql.PreparedStatement statement)intprepare(java.sql.PreparedStatement statement)Perform any special statement preparation.voidverifyOutcome(int rowCount, java.sql.PreparedStatement statement, int batchPosition, java.lang.String statementSQL)Perform verification of the outcome of the RDBMS operation based on the type of expectation defined.
-
-
-
Method Detail
-
verifyOutcome
public final void verifyOutcome(int rowCount, java.sql.PreparedStatement statement, int batchPosition, java.lang.String statementSQL)Description copied from interface:ExpectationPerform verification of the outcome of the RDBMS operation based on the type of expectation defined.- Specified by:
verifyOutcomein interfaceExpectation- Parameters:
rowCount- The RDBMS reported "number of rows affected".statement- The statement representing the operationbatchPosition- The position in the batch (if batching)statementSQL- The SQL backing the prepared statement, for logging purposes
-
prepare
public int prepare(java.sql.PreparedStatement statement) throws java.sql.SQLException, HibernateExceptionDescription copied from interface:ExpectationPerform any special statement preparation.- Specified by:
preparein interfaceExpectation- Parameters:
statement- The statement to be prepared- Returns:
- The number of bind positions consumed (if any)
- Throws:
java.sql.SQLException- Exception from the JDBC driverHibernateException- Problem performing preparation.
-
canBeBatched
public boolean canBeBatched()
Description copied from interface:ExpectationIs it acceptable to combiner this expectation with statement batching?- Specified by:
canBeBatchedin interfaceExpectation- Returns:
- True if batching can be combined with this expectation; false otherwise.
-
determineRowCount
protected int determineRowCount(int reportedRowCount, java.sql.PreparedStatement statement)
-
-