Srini> Does Sybase Python driver module implement multiple result sets
Srini> from a single command?
I've used it to get multiple result sets from stored procedures, so I guess
the answer would be "yes". Something like this:
>>> params = curs.callproc('stored_procedure', params)
>>> while True:
... rows = curs.fetchall()
... print rows
... if not curs.nextset():
... break
--
Skip Montanaro - [email protected] - http://www.smontanaro.net/
--
http://mail.python.org/mailman/listinfo/python-list
