JavaScript
x
3
1
comnd = ("UPDATE booking SET check_out_time = " + (datetime.now().strftime("%H:%M"))+ " WHERE Contact_no = "+ str(contact_number_en.get())
2
)
3
Error :- mysql.connector.errors.ProgrammingError: 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘:00 WHERE Contact_no = 9827355876’ at line 1
How can I do this to make a single query of SQL ?
Advertisement
Answer
You should be using a prepared statement here, e.g.
JavaScript
1
4
1
sql = "UPDATE booking SET check_out_time = %s WHERE Contact_no = %s"
2
vals = (datetime.now(), contact_number_en.get())
3
cursor.execute(sql, vals)
4