Interface StatementInfo
- All Known Implementing Classes:
MockStatementInfo
-
Method Summary
Modifier and TypeMethodDescriptionGetConnectionInfo
associated to thisStatement
.Get the sql statement that has originally specified onConnection.createStatement(String)
.Get the updated sql statement byBindParameterConverter.onCreateStatement(String, StatementInfo)
.RetrieveValueStore
which is associated to the scope of logical statement.
-
Method Details
-
getConnectionInfo
ConnectionInfo getConnectionInfo()GetConnectionInfo
associated to thisStatement
.- Returns:
- connection info
-
getOriginalQuery
String getOriginalQuery()Get the sql statement that has originally specified onConnection.createStatement(String)
.- Returns:
- original sql statement
-
getUpdatedQuery
String getUpdatedQuery()Get the updated sql statement byBindParameterConverter.onCreateStatement(String, StatementInfo)
.- Returns:
- updated sql statement
-
getValueStore
ValueStore getValueStore()RetrieveValueStore
which is associated to the scope of logical statement.Values can be stored or retrieved from this store while statement is available.
- Returns:
- value store
-