Interface PreparedStatementDetails
-
- All Known Implementing Classes:
PreparedStatementDetailsStandard
@Incubating public interface PreparedStatementDetails
Descriptor for details about aPreparedStatement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Expectation
getExpectation()
The expectation used to validate the outcome of the executionTableMapping
getMutatingTableDetails()
The name of the mutating tableString
getSqlString()
The SQL used to mutate the tablePreparedStatement
getStatement()
ThePreparedStatement
generated from the SQL.default boolean
isCallable()
Whether the statement is callablevoid
releaseStatement(SharedSessionContractImplementor session)
PreparedStatement
resolveStatement()
ThePreparedStatement
generated from the SQL.
-
-
-
Method Detail
-
getMutatingTableDetails
TableMapping getMutatingTableDetails()
The name of the mutating table
-
getSqlString
String getSqlString()
The SQL used to mutate the table
-
getStatement
PreparedStatement getStatement()
ThePreparedStatement
generated from the SQL. May return null.- See Also:
resolveStatement()
-
resolveStatement
PreparedStatement resolveStatement()
ThePreparedStatement
generated from the SQL.Unlike
getStatement()
, this method will attempt to create the PreparedStatement
-
getExpectation
Expectation getExpectation()
The expectation used to validate the outcome of the execution
-
isCallable
default boolean isCallable()
Whether the statement is callable
-
releaseStatement
void releaseStatement(SharedSessionContractImplementor session)
-
-