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
In the code, you have called the
commit()
method on the cursor object, but you should call it on the database connection object.