使用最新版本的PyMySQL(0.9.3),我无法执行其中包含多个SQL语句并以分号(;)分隔的查询字符串
我的python版本是:Python 3.6.5
import pymysql # version 0.9.3
conn = {
"host": "mysql_server_hostname",
"password": "my_password",
"port": <<port_no>>,
"user": "my_username"
}
my_query_str = 'show databases;use random_existing_db;'
with pymysql.connect(**conn):
cur.execute(query)
错误返回:(1064,“在单个查询中检测到多个语句)
尝试使用PyMySQL-0.7.11运行相同的查询,并且有效
答案 0 :(得分:1)
是的,我使用了client_flag = CLIENT.MULTI_STATEMENTS
参数。
答案 1 :(得分:0)
在pymysql 0.8及更高版本中,默认情况下不再设置客户端标志。为了执行多个语句,需要通过 client_flag = CLIENT.MULTI_STATEMENTS。
参考:https://github.com/PyMySQL/PyMySQL/blob/v0.9.3/CHANGELOG#L66
下面的修复程序示例。
import pymysql
from pymysql.constants import CLIENT
conn = {
"host": "mysql_server_hostname",
"password": "my_password",
"port": <<port_no>>,
"user": "my_username",
"client_flag": CLIENT.MULTI_STATEMENTS
}
my_query_str = 'show databases;use random_existing_db;'
with pymysql.connect(**conn) as cur:
cur.execute(my_query_str)