我在mysql数据库上有一个非常简单的存储过程,接受4个VARCHAR参数并对某个表执行插入操作(我之所以这样做是为了能够更好地控制我给应用程序的权限)。当我直接从mysql调用过程时,如下所示:
CALL my_proc('aa', 'bb', 'cc', 'dd');
该过程完成其工作,并将记录插入相关表中。现在,当我通过python(使用mysql.connector)尝试时,不知何故代码似乎执行正常(没有错误),但它没有执行预期的插入语句。我的代码是这样的:
from mysql.connector import MySQLConnection, Error, Warning
from helpers import get_config
def connect():
# helper procedure to fetch credentials from config.ini
db_config = get_config('mysql')
try:
print('Connecting...')
conn = MySQLConnection(**db_config)
if conn.is_connected():
print('connected')
return conn
else:
print('could not connect')
return None
except Error as e:
print(e)
def insert_record(conn, a, b, c, d):
try:
args = [a, b, c, d]
cursor = conn.cursor()
print('inserting {0} into database ''{1}'''.format(args, conn.database))
statement = "CALL my_proc('{0}', '{1}', '{2}', '{3}');".format(args)
print(statement)
cursor.execute(statement)
#cursor.callproc('my_proc', args)
except (Error, Warning) as e:
print e
if __name__ == '__main__':
conn = connect()
insert_listen_record(conn, 'aa', 'bb', 'cc', 'dd')
disconnect(conn)
输出完全符合您的期望:
connecting...
connected
inserting ['aa', 'bb', 'cc', 'dd'] into the database
CALL my_proc('aa', 'bb', 'cc', 'dd');
connection closed
正如您在过程insert_record中的注释掉的代码中所看到的,我也尝试使用cursor.callproc而不是cursor.execute,但结果相同(缺少)。不知道我做错了什么,而且我对这一切都是新手,我甚至不知道从哪里开始调试:存储过程工作正常,没有错误消息,并且在调试模式中单步调试代码似乎一切细...