SqlConnection 和 TransactionScope 超时
我有一个超时为 60 分钟的 TransactionScope(通过 DTC,已提交读)。 在 TransactionScope 中,我已打开连接(我希望加入事务),但 30 秒后出现超时。
在 machine.config 中,我将 system.transaction maxTimeout 更改为 60 分钟。
为什么30秒后会超时?
I have a TransactionScope (over DTC, read committed) with a timeout of 60 minutes.
In the TransactionScope I have opened the connection (I hope to enlist in the transaction) but after 30 seconds I get a timeout.
In the machine.config I changed the system.transaction maxTimeout to 60 minutes.
Why does the timeout occur after 30 seconds?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SqlCommand 已具有默认为 30 秒的 CommandTimeout 属性。可能您正在交易中使用它。
A SqlCommand already has a CommandTimeout property that defaults to 30 seconds. May be you are using it within your transaction.