C# 的 Mysql 分布式事务
我有一个 C# 应用程序。我想运行一个在不同位置插入和更新多个数据库的事务。我注意到是通过mysql提供的.net连接器支持。有什么解决办法吗?我目前正在做的是打开 2 个事务,然后提交一个事务,然后再提交另一个事务,这是有风险的,因为有时某些内容无法更新。
I have a C# application. I would like to run a transaction which insert and update multiple database on different location. I notice is to support via the .net connector provided by mysql. Any solution for this? What I am doing currently is that open 2 transaction then I commit one then I commit another after that which is risky as sometimes somethings fail to be updated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试查看 http://dev.mysql.com/doc/refman/ 5.0/en/xa.html。
Try looking into http://dev.mysql.com/doc/refman/5.0/en/xa.html.