亚音速命令超时
有没有办法为亚音速生成的所有内容设置命令超时?
——爱德华
Is there a way to set the command timeout for everything generated by subsonic?
-Edward
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法为亚音速生成的所有内容设置命令超时?
——爱德华
Is there a way to set the command timeout for everything generated by subsonic?
-Edward
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
对于 MySql,您可以在连接字符串中指定 CommandTimeout:
但是对于 SqlServer,您不能这样做。对于 SubSonic 2 来说,没有简单的方法可以实现这一目标。
源代码中硬编码了多个命令超时(查看文件 SqlDataProvider.cs)
Query.cs
QueryCommand.cs
StoredProedure.cs:
我不知道我是否错过了某些部分,但如果您更改这些值并重新编译 SubSonic,您应该没事。
如果您不想这样做并且使用查询工具,您可以在运行时设置超时
For MySql you can sepecify the CommandTimeout in the connectionstring:
But for SqlServer you can't do that afaik. For SubSonic 2 there is no easy way to achive that.
There are multiple command timeouts hard coded in the source (look at the file SqlDataProvider.cs)
Query.cs
QueryCommand.cs
StoredProedure.cs:
I don't know if I missed some parts but if you change these values and recompile SubSonic you should be fine.
If you don't want to do that and you use the Query Tool you can set the timeout at runtime with