Heim  >  Fragen und Antworten  >  Hauptteil

Python MySQL speichert nicht in meiner Datenbanktabelle

import MySQL. Connector

db2 = mysql.connector.connect(host="localhost", port="3306", user="root", database="DB9db");
db2cursor=db2.cursor()

#sql="INSERT INTO novatable3 (Nid,Namee,Gender,Age,Qualification,DoB) values (%s, %s, %s, %s, %s, %s)"
#var=("33","summeya","F","17","bsc","2005")

sql="INSERT INTO chktbl (name, salary) values (%s, %s)"
var=[("summeya",33),("summeya",33),("summeya",33),("summeya",33),("summeya",33),("summeya",33),("summeya",33),("summeya",33)]
db2cursor.executemany(sql, var)
#

print(db2cursor.rowcount,"records insertd")
db2cursor.commit()

commit() Speichert keine Daten in meiner Apache-MySQL-Datenbank. MySQL-Connecter

im Python-Code
P粉237647645P粉237647645403 Tage vor515

Antworte allen(1)Ich werde antworten

  • P粉242741921

    P粉2427419212023-09-13 11:52:28

    在代码中,您已在游标对象上调用了 commit() 方法,但您应该在数据库连接对象上调用它。

    Antwort
    0
  • StornierenAntwort