我在带有 FreeTDS 的 Linux 上使用 pyodbc 连接到 SQL Server 2005。我注意到我的连接的超时参数没有被我的查询所接受。
当我运行以下命令时,我希望在两个 cursor.execute 调用之后看到超时错误。
import pyodbc
import time
connString = 'SERVER=dbserver;PORT=1433;DATABASE=db;UID=dbuser;PWD=dbpwd;' + \
'DRIVER=FreeTDS'
cnxn = pyodbc.connect(connString , timeout=3)
cursor = cnxn.cursor()
t1 = time.time()
cursor.execute("SELECT MAX(Qty) FROM big_table WHERE ID<10000005")
print cursor.fetchone()
t2 = time.time()
print t2-t1
cursor.execute("WAITFOR DELAY '00:00:30'")
print 'OK'
相反,我得到了这个输出。表明第一个 db 查询占用了 7.5 秒,第二个调用占用了 30 秒而没有引发超时。
(808432.0, )
7.56196093559
OK
有没有更好的方法来使用 pyodbc 和 SQL Server 强制查询超时?