HasorDB 使用原始连接

2021-12-30 11:31 更新

有时候我们需要获取最原始的 ​Connection ​那么可以采用下面方式:

ConnectionCallback<List<TestUser>> callBack = new ConnectionCallback<List<TestUser>>() {
    public List<TestUser> doInConnection(Connection con) throws SQLException {
        List<TestUser> result = ...
        // do some thing
        return result;
    }
};

List<TestUser> resultList = jdbcTemplate.execute(callBack);


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号