My update statement in MySQL doesn't appear to be working:
timeup = "UPDATE timeid set time=\"" + str(timeid) + "\""
c.execute(timeup)
I've tried everything I thought might be wrong with it, including changing the type of the variable (as you can see above, I have it as a string) and using and not using quotes.
I can even print out what the statement turns into:
UPDATE timeid set time="224215313716215808"
The only column and value that timeid has is time and 0, respectively.
Why isn't this updating? Am I doing something wrong?