Уважаемые товарищи, нужна ваша помощь! не пойму в чем проблема
import MySQLdb
conn1 = MySQLdb.connect(host="localhost",user="root", passwd="****", db="chat", use_unicode=True, charset="utf8")
msg_data = "INSERT INTO `chat_text`(`login`,`user_to`,`text`) VALUES ('g4', 'all','sdfsdfsd'); INSERT INTO `chat_text`(`login`,`user_to`,`text`) VALUES ('g4', 'all', 'sdfsdfsdf');"
with conn1.cursor() as cursor:
cursor.execute(msg_data)
conn1.commit()
conn1.close()
Выдает Ошибку:
...
conn1.commit()
_mysql_exceptions.ProgrammingError: (2014, "Commands out of sync; you can't run this command now")
Нужна помощь, много перекопал не найду. Странно то, что у меня в том же скрипте есть точно такая же конструкция, и она работает а это нет.
Сам запрос работает в phpMyAdmin.