开发者

How to create your own callback for Ibatis SqlTemplateClientMap

I'd like to know how to create my own callback for a SqlMapClientTemplate. Specifically so I can do batch ca开发者_开发知识库lls.


The way I do it is to override the SqlMapClientCallback<T> method doInSqlMapClient.

   SqlMapClientCallback<Integer> callback = new SqlMapClientCallback<Integer>() {
        public Integer doInSqlMapClient(SqlMapExecutor executor) throws SQLException {
            executor.startBatch();
            //... do your queries here
            return executor.executeBatch();
        }
    };
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜