Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Any idea what I am doing wrong here? There are no error messages and the script runs fine, but no record is inserted into the db. Running the insert query on the database works fine.

Even if i put in a bogus IP or password no error is generated.

This is on windows with python 2.7 and the mysqldb 2.7 windows binaries.

import os, sys, time, glob, shlex, subprocess, MySQLdb

try:
    db=MySQLdb.connect(host="my.sql.server.ip.here",user="encoding",passwd="passhere",db="encoding")
except MySQLdb.Error, e:
    print "Error %d: %s" % (e.args[0], e.args[1])
    sys.exit (1)

c=db.cursor()
c.execute("""INSERT INTO test (jobid, frame) VALUES (%s, %s)""",("asdf", "s[1]" ) )
c.close ()
db.close ()
share|improve this question

1 Answer

up vote 2 down vote accepted

Autocommit is disabled. Commit the transaction before disconnecting.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.