Я довольно новый с SQL в Python. У меня есть некоторые данные, которые я хочу отправить в свою базу данных SQL. Но у меня ошибка pymysql.err.IntegrityError: (1048, "Column 'ProTitre' cannot be null")
.
Я пытался поместить titre
и descr
в переменную data[]
, а затем data[]
в cursor.execute(sql, data)
.
И поставить прямо sql = ("INSERT INTO projet (ProTitre, ProDescription) VALUES (%s, %s)", (self.sqlEntryTitreProjet, self.sqlEntryDescrProjet))
или cursor.execute(sql, self.sqlEntryTitreProjet, self.sqlEntryDescrProjet)
.
def exemple(self):
self.sqlEntryTitreProjet = "test1"
self.sqlEntryDesrcrProjet = "test descr"
def myConnectin(self):
self.connection = pymysql.connect(host='127.0.0.1',
user='root',
password='',
db='bd_outiltesting',
charset='utf8mb4',
cursorclass=pymysql.cursors.DictCursor)
def addItemProjet(self):
self.myConnection()
titre = self.sqlEntryTitreProjet
descr = self.sqlEntryDesrcrProjet
sql = ("INSERT INTO projet (ProTitre, ProDescription) VALUES (%s,
%s)", (titre, descr))
cursor = self.connection.cursor()
cursor.execute(sql)
self.connection.commit()
print("cursor.description:", cursor.description)
cursor.close()
if self.connection.is_connected():
self.connection.close()
print("MySQL connection is closed")
pymysql.err.IntegrityError: (1048, "Column 'ProTitre' cannot be null")