Interface Sql
- All Known Implementing Classes:
DynamicSql,RawSql,SimpleDynamicSql,StaticSql
public interface Sql
The Interface Sql.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcleanup(StatementScope statementScope) Cleanup.getParameterMap(StatementScope statementScope, Object parameterObject) Gets the parameter map.getResultMap(StatementScope statementScope, Object parameterObject) Gets the result map.getSql(StatementScope statementScope, Object parameterObject) Gets the sql.
-
Method Details
-
getSql
Gets the sql.- Parameters:
statementScope- the statement scopeparameterObject- the parameter object- Returns:
- the sql
-
getParameterMap
Gets the parameter map.- Parameters:
statementScope- the statement scopeparameterObject- the parameter object- Returns:
- the parameter map
-
getResultMap
Gets the result map.- Parameters:
statementScope- the statement scopeparameterObject- the parameter object- Returns:
- the result map
-
cleanup
Cleanup.- Parameters:
statementScope- the statement scope
-