Hi all,
I'm running a web crawler that gets called as a separate thread via Django. When it tries to store the scraped information I get this error:
File "/usr/lib/pymodules/python2.6/MySQLdb/cursors.py", line 147, in execute charset = db.character_set_name() InterfaceError: (0, '')
If I manually run the script from the command line I don't get this error. Any ideas?
My guess is that I do about 4 cursor.execute()s in one iteration of a loop. Could this be throwing something off?
Thanks!