是否可以使用 OleDbTransaction 将数据保存在两个不同的数据库中?
使用 C#,是否可以使用 OleDbTransaction
在两个不同的数据库供应商(例如 Microsoft SQL Server 和 Oracle)中执行插入?
Using C#, is it possible to use OleDbTransaction
to execute a insert in two different database vendors, such as Microsoft SQL Server and Oracle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否,因为
OleDbTransaction
绑定到特定的OleDbConnection
。唯一的解决方案是使用 TransactionScope(首选解决方案)或 EnterpriseServices 类。No because an
OleDbTransaction
is tied to a specificOleDbConnection
. The only solution is to use TransactionScope (preferred solution) or the EnterpriseServices classes.