您的位置:首页 > 其它

mybatis源码之StatementHandler

2016-01-07 20:07 435 查看
/**
* @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();

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: