Answers for "mysql.connector.errors.InterfaceError: Failed executing the operation; Not all parameters were used in the SQL statement"

0

mysql.connector.errors.InterfaceError: Failed executing the operation; Not all parameters were used in the SQL statement

# just use %s
add_user = """INSERT INTO DB.tbluser 
              (username, department, startyear, currentpos, link) 
              VALUES (%s, %s, %s, %s, %s)"""
Posted by: Guest on June-02-2021
0

mysql.connector.errors.InterfaceError: Failed executing the operation; Not all parameters were used in the SQL statement

# just use %s
add_user = """INSERT INTO DB.tbluser 
              (username, department, startyear, currentpos, link) 
              VALUES (%s, %s, %s, %s, %s)"""
Posted by: Guest on June-02-2021

Code answers related to "mysql.connector.errors.InterfaceError: Failed executing the operation; Not all parameters were used in the SQL statement"

Python Answers by Framework

Browse Popular Code Answers by Language