I made next Query to update a row in my DB.
def saveData(title, LL, LR, RL, RR, distanceBack): c.execute("UPDATE settings SET (?,?,?,?,?,?) WHERE name=?",(title, LL, LR, RL, RR, distanceBack, title)) conn.commit()
I always get next error: sqlite3.OperationalError: near "(": syntax errorI know something isn't correct with the question marks. I can't find out what the exact solution is. Can somebody explain me what the problem is?