Sqlserver连接字符串中怎么设置CommandTimeout属性

Sqlserver连接字符串中怎么设置CommandTimeout属性,第1张

是在Connection里面的设置,Connection可以设置连接的Timeout,执行的Timeout是在执行的时候设置,比如SqlCommand command = new SqlCommand(queryString, connection)

// Setting command timeout to 1 second

command.CommandTimeout = 1

定义和用法

CommandTimeout 属性可设置或返回执行命令期间在终止尝试和产生错误之前需等待的时间。

设置或返回 Long 值,该值指示等待命令执行的秒数。默认值为 30。

sp_configure 'remote query timeout (s)'

exec sp_configure 'query wait (s)'

修改语句:

exec sp_configure 'query wait (s)',800

reconfigure with override

go


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7846100.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存