📜  使用语句连接 pyodbc - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:23.881000             🧑  作者: Mango

代码示例1
with pyodbc.connect(conx_string) as conx:
    cursor = conx.cursor()
    cursor.execute(query)
    data = cursor.fetchall()