gpt4 book ai didi

python - 如何使用 python 计算 MSSQL 查询执行时间

转载 作者:太空宇宙 更新时间:2023-11-04 09:06:32 26 4
gpt4 key购买 nike

谁能告诉我如何使用 python 计算 MSSQL 存储过程查询的执行时间。我有这样的查询

 import pyodbc

import timer

DSN ='DRIVER=FreeTDS;SERVER=255.8.12.34;PORT=1433;DATABASE=CustomerFile;UID=Cust;
PWD=Cust;TDS_Version=8.0;'

cnxn =pyodbc.connect(DSN)

cursor = cnxn.cursor()

cursor.execute("select * from db.customer")

d = cursor.fetchall()

print d

我想知道查询的执行时间。我不知道该怎么做。请帮忙

预期输出:

 [(1, aa,vir,123/12, aaa@gmailcom,88898976),(2,bb,yuv,23/4, bbb@gmail.com,2124314)]

Time Taken To execute: 10s

最佳答案

from time import time

# your code here

tic = time()
cursor.execute("select * from db.customer")
toc = time()
print toc - tic

关于python - 如何使用 python 计算 MSSQL 查询执行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20194174/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com