通过 .NET DbConnection 连接到 DB2
我们当前的数据库连接提供程序模型依赖于数据库连接来使用基于 DbConnection (System.Data) 的对象。
我们可以通过 OdbcConnection 连接到 DB2 (*Nix * Windows),但我们希望允许使用本机 DB2 驱动程序。
有什么方法可以做到这一点(.Net 框架、开源或(最后选择)供应商)而不脱离我们当前的 DAL 模型?
Our current DB Connection provider model relies on database connectivity to use DbConnection (System.Data) based objects.
We can connect to DB2 (*Nix * Windows) via OdbcConnection, but we would like to allow the use of native DB2 Drivers.
Is there any way to do so (either .Net framework, OpenSource or (last choice) vendor) without breaking away from our current DAL model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有一种上面文章中没有提到的方法,那就是使用DbNetData,它简化了数据库访问,并且能够从.NET 连接到 DB2。 源代码托管在 CodePlex 上,如下:
DbNetData
There is another method not mentioned in the article above, and that is to use DbNetData which simplifies database access and has the ability to connect to DB2 from .NET. The source is hosted on CodePlex below:
DbNetData