ibatis 1.6.2 for .Net 查询超时
.net平台上的ibatis 1.6有没有办法设置查询超时?
不幸的是,在这种情况下,升级对我来说不是一个选择。
干杯 谢恩
Is there a way to set the query timeout for ibatis 1.6 on the .net platform?
Unfortunately, upgrading is not an option for me in this case.
Cheers
Shane
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经使用装饰器模式来完成此操作,该模式装饰 IDbProvider 以公开所需的方法:
然后实现抽象类:
最后当您构建映射器时:
I've done this using the decorator pattern that decorates the IDbProvider to expose the needed method:
Then realize the abstract class:
And finally when you build the mapper: