I'm using pymssql to do database programming with Python on Linux.
I'm having problems with passing parameters to queries. This problem only seems to exist with INSERT queries.
This works:
query = "SELECT col1, col2 FROM table WHERE col3=%s"
cur.execute(query, (value,))
But this doesn't:
query = "INSERT INTO table (col1, col2) VALUES (%s, %s)"
cur.execute(query, (value1, value2,))
Any idea why the INSERT query won't work?
Here is the traceback:
Traceback (most recent call last):
File "test.py", line 46, in ?
cur.execute(query, (value1, value2,))
File "/usr/lib/python2.4/site-packages/pymssql.py", line 126, in execute
self.executemany(operation, (params,))
File "/usr/lib/python2.4/site-packages/pymssql.py", line 152, in executemany
raise DatabaseError, "internal error: %s" % self.__source.errmsg()
pymssql.DatabaseError: internal error: None