This project is archived and is in readonly mode.
NamedTupleCursor.executemany omits query parameter
Reported by Psycopg website | August 9th, 2011 @ 09:51 AM
Submitted by: jpritikin@pobox.com
--- ./lib/extras.py.orig 2011-08-09 15:20:37.000000000 +0530 +++ ./lib/extras.py 2011-08-09 15:20:57.000000000 +0530 @@ -275,7 +275,7 @@
def executemany(self, query, vars):
self.Record = None
-
return _cursor.executemany(self, vars)
-
return _cursor.executemany(self, query, vars)
self.Record = None
Comments and changes to this ticket
-
Daniele Varrazzo August 9th, 2011 @ 10:30 AM
- State changed from new to resolved
Oops... fixed. Thank you for the report.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
<b>WARNING:</b> the informations in this tracker are archived. Please submit new tickets or comments to <a href="https://github.com/psycopg/psycopg2/issues">the new tracker</a>.
<br/>
Psycopg is the most used PostgreSQL adapter for the Python programming language. At the core it fully implements the Python DB API 2.0 specifications. Several extensions allow access to many of the features offered by PostgreSQL.