Home  >  Q&A  >  body text

python MySQL not saving to my database table

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() does not save any data to my apache MySQL database. In Python code MySQL-connecter

P粉237647645P粉237647645403 days ago516

reply all(1)I'll reply

  • P粉242741921

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

    In the code, you have called the commit() method on the cursor object, but you should call it on the database connection object.

    reply
    0
  • Cancelreply