Am having problems with MySql not recognizing this syntax.
I think the issue is in the the exceute statement. I was using their previous method https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-transaction.html
def insertPS3(name,gamedb):
mycursor = gamedb.cursor()
mycursor.execute("""INSERT INTO ps3 (name) VALUES (%s,)""" % (name,))
gamedb.commit()
Edit
'%s' is the fix