0

我在使用 pywin32 库并尝试连接到 OLEDB 时遇到了问题。

追溯

Traceback (most recent call last):
  File "<input>", line 35, in <module>
  File "<input>", line 31, in ado
  File "<COMObject ADODB.Recordset>", line 4, in Open
    the XML parser for analysis: the response Time for the XML for analysis request timed out before it was completed.', None, 0, -2147467259), None)

我试图添加Connect Timeout=1000到我connectionstring的无济于事。

代码

import win32com.client
import pyodbc

conn = win32com.client.Dispatch(r'ADODB.Connection')
    DSN = CONNECTION_STRING
    conn.Open(DSN)

    rs = win32com.client.Dispatch(r'ADODB.Recordset')



        strsql = u"""
    select

        ...
        ...
        ...

        """

    h = rs.Open(strsql, conn,0,1)
    ts = rs.GetRows()
    conn.Close()
    return ts

我认为问题出在这里:

h = rs.Open(strsql, conn,0,1)

我看不到应该将哪些参数传递给“打开”。但我认为它必须有超时参数。

如何更改命令超时?

4

1 回答 1

0

问题通过添加解决:

conn.CommandTimeout=3000
于 2016-03-28T12:15:10.873 回答