How do you change the SQL isolation level from Python using MySQLdb?

前端 未结 2 1229
刺人心
刺人心 2020-12-20 14:18

The documentation I\'ve run across researching this indicates that the way to do it for other databases is to use multiple statements in your query, a la:

&g         


        
2条回答
  •  独厮守ぢ
    2020-12-20 14:39

    cur.executemany("SELECT * FROM bar WHERE thing = 'bar'; SELECT * FROM bar")
    print cur.fetchall()
    

    use cur.executemany to run multiple sql statements with ; separated.

提交回复
热议问题