0
執行的SQL
我在Python執行一些SQL如下調試在Python
statement = "select * from TEST_TABLE"
debug("Statement: %s" % (statement,))
cursor = gblDBConnection.cursor()
cursor.execute(statement)
我可以用自己編寫的調試功能調試語句,但也想調試的實際值SQL執行後,即返回。
有沒有辦法做到這一點?