On Oct 14, 2009, at 8:40 PM, BEES INC wrote:

>
> Hi
>
> I have a stored procedure on a mysql server i'm calling.
>
> However, all i can seem to get back are the arguments passed to the
> procedure
>
> if i do it using MySQLdb i just use the cursor .nextset() to get the
> actual results of the procedure call
>
> Is there a way I can advance the record set to the actual returned
> rows using SQLAlchemy?
>
> I hope I'm not missing something obvious, I have searched the docs and
> googled everything I could think of.


you'd have to stick to raw cursor access for that as cursor.nextset()  
is not part of SQLA's public API.    If it were me though I'd modify  
the procedure to not require multiple result sets.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to