module for working with the result set

Scott David Daniels Scott.Daniels at Acm.Org
Mon May 17 18:52:24 EDT 2004


Try:
   ...
   for coldesc in cursor.description:
       print coldesc[0],
   print
   for row in cursor.fetchmany(10):
       print row
   ....

-- 
-Scott David Daniels
Scott.Daniels at Acm.Org



More information about the Python-list mailing list