在Psycopg2中测量查询执行时间

时间:2016-08-06 08:24:53

标签: sql postgresql python-3.x psycopg2

我正在使用psycopg2进行python,我想跟踪数据库的执行时间。

starttime = time.time()
cursor.execute(sql_statement, args)
print(time.time() - starttime)

执行sql后立即返回cursor.execute()函数吗?

如果是这样,我如何跟踪sql查询时间?

0 个答案:

没有答案