public interface StatementHandler
| Modifier and Type | Method and Description |
|---|---|
void |
batch(Statement statement) |
BoundSql |
getBoundSql() |
ParameterHandler |
getParameterHandler() |
void |
parameterize(Statement statement) |
Statement |
prepare(Connection connection,
Integer transactionTimeout) |
<E> List<E> |
query(Statement statement,
ResultHandler resultHandler) |
<E> Cursor<E> |
queryCursor(Statement statement) |
int |
update(Statement statement) |
Statement prepare(Connection connection, Integer transactionTimeout) throws SQLException
SQLExceptionvoid parameterize(Statement statement) throws SQLException
SQLExceptionvoid batch(Statement statement) throws SQLException
SQLExceptionint update(Statement statement) throws SQLException
SQLException<E> List<E> query(Statement statement, ResultHandler resultHandler) throws SQLException
SQLException<E> Cursor<E> queryCursor(Statement statement) throws SQLException
SQLExceptionBoundSql getBoundSql()
ParameterHandler getParameterHandler()
Copyright © 2009–2021 MyBatis.org. All rights reserved.