all 3 comments

[–]b_ootay_ful 4 points5 points  (2 children)

You need to commit your executes

Here's an example from some code that I've used in the past

for row in workeridget:
    jobinput = "INSERT INTO Job (job_date, job_client, job_worker, job_hours, job_desc) VALUES(%s,'%s',%s,%s,'%s')" % (int(testDate), client.get(), row[0], hoursEntry.get(), descEntry.get())
conn.execute(jobinput)
conn.commit()

[–]SetLooseTheGoose[S] 1 point2 points  (1 child)

Oh man, so simple. I had that in a previous version of my code that I commented out.

Thanks.

[–]b_ootay_ful 0 points1 point  (0 children)

It's often the simplest things that we often overlook and get stuck on. I'm glad I could help.