mybatis源码之StatementHandler

来源:互联网 发布:西部域名怎么解析 编辑:程序博客网 时间:2024/05/01 18:35
/** * @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 0
原创粉丝点击