Package psycopg2 :: Module psycopg1 :: Class cursor
[show private | hide private]
[frames | no frames]

Type cursor

object --+    
         |    
    cursor --+
             |
            cursor


psycopg 1.1.x cursor.

Note that this cursor implements the exact procedure used by psycopg 1 to build dictionaries out of result rows. The DictCursor in the psycopg.extras modules implements a much better and faster algorithm.


Method Summary
  dictfetchall(self)
  dictfetchmany(self, size)
  dictfetchone(self)
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
Return hash(x)...
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Method Details

dictfetchall(self)

dictfetchmany(self, size)

dictfetchone(self)