0
点赞
收藏
分享

微信扫一扫

mybatis源码之StatementHandler


/**
* @author Clinton Begin
*/
public interface StatementHandler {

Statement prepare(Connection connection)
throws SQLException;

void parameterize(Statement statement)
throws SQLException;

void batch(Statement statement)
throws SQLException;

int update(Statement statement)
throws SQLException;

<E> List<E> query(Statement statement, ResultHandler resultHandler)
throws SQLException;

BoundSql getBoundSql();

ParameterHandler getParameterHandler();

}


举报

相关推荐

0 条评论