Hello,
recently i started working with SQLAlchemy and i have one question
regarding the stored procedures.
On the following website, there is a quide of how to execute the
stored procedures:
http://groups.google.com/group/sqlalchemy/browse_thread/thread/d0b3ad0379606e81/eb1447a0fd3129cc?lnk=gst&q=func+graph&rnum=1
My question is how to map Python-class and stored procedures.
For exapmple:
class Person:
givenName
surName
id
and the procedures:
getPerson( id )
setPerson( id, gName, sName )
createPerson( )
removePerson( id )
Can you please tell me if it is possible to use getPerson instead of
select...; and setPerson... instead of update?
Thank you for your help.
Best regards,
Peter
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---