亚音速命令超时

发布于 2024-09-06 22:43:41 字数 45 浏览 2 评论 0原文

有没有办法为亚音速生成的所有内容设置命令超时?

——爱德华

Is there a way to set the command timeout for everything generated by subsonic?

-Edward

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不交电费瞎发啥光 2024-09-13 22:43:41

对于 MySql,您可以在连接字符串中指定 CommandTimeout:

<connectionStrings>
    <add name="Local" connectionString="Server=localhost;
       Database=db;uid=admin;Password=pass;default command timeout=60" />
</connectionStrings>

但是对于 SqlServer,您不能这样做。对于 SubSonic 2 来说,没有简单的方法可以实现这一目标。
源代码中硬编码了多个命令超时(查看文件 SqlDataProvider.cs)

Query.cs

private int commandTimeout = 60;

QueryCommand.cs

/// <summary>
/// Summary for the QueryCommand class
/// </summary>
public class QueryCommand
{
    private string _providerName = String.Empty;
    private int commandTimeout = 60;  // change to whatever you like and recompile

StoredProedure.cs:

private int commandTimeout = 60;

我不知道我是否错过了某些部分,但如果您更改这些值并重新编译 SubSonic,您应该没事。

如果您不想这样做并且使用查询工具,您可以在运行时设置超时

cmd.CommandTimeout = 600;

For MySql you can sepecify the CommandTimeout in the connectionstring:

<connectionStrings>
    <add name="Local" connectionString="Server=localhost;
       Database=db;uid=admin;Password=pass;default command timeout=60" />
</connectionStrings>

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

private int commandTimeout = 60;

QueryCommand.cs

/// <summary>
/// Summary for the QueryCommand class
/// </summary>
public class QueryCommand
{
    private string _providerName = String.Empty;
    private int commandTimeout = 60;  // change to whatever you like and recompile

StoredProedure.cs:

private int commandTimeout = 60;

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

cmd.CommandTimeout = 600;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文