Package gavo :: Package base :: Module sqlsupport :: Class DebugCursor
[frames] | no frames]

Class DebugCursor

source code

                object --+    
                         |    
psycopg2.extensions.cursor --+
                             |
                            DebugCursor

Instance Methods
 
execute(self, sql, args=None)
Execute query with bound vars.
source code
 
executemany(self, sql, args=[])
Execute many queries with bound vars.
source code

Inherited from psycopg2.extensions.cursor: __enter__, __exit__, __init__, __iter__, __new__, __repr__, __str__, callproc, cast, close, copy_expert, copy_from, copy_to, fetchall, fetchmany, fetchone, mogrify, next, nextset, scroll, setinputsizes, setoutputsize

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties

Inherited from psycopg2.extensions.cursor: arraysize, binary_types, closed, connection, description, itersize, lastrowid, name, query, row_factory, rowcount, rownumber, scrollable, statusmessage, string_types, typecaster, tzinfo_factory, withhold

Inherited from object: __class__

Method Details

execute(self, sql, args=None)

source code 

Execute query with bound vars.

Overrides: psycopg2.extensions.cursor.execute
(inherited documentation)

executemany(self, sql, args=[])

source code 

Execute many queries with bound vars.

Overrides: psycopg2.extensions.cursor.executemany
(inherited documentation)