On Aug 27, 2008, at 4:57 PM, Arthur Pemberton wrote:

>
> I am looking into what are the best practices, common methods of doing
> things like RPC with SqlAlchemy declarative_base sublcasses.
>
> Is there a concept of DTO? Or is this something I would have to build
> into it myself?

concepts like DTO/DAO etc. are things you dont hear talked about much  
in the Python world overall since we generally go for a lighter weight  
approach than what you see in the Java community.    Typically an  
object mapped by declarative would also be serializable in the  
appropriate way for the RPC methodology in use (such as, it might have  
a toXML() method for XMLRPC), so there would be no repetition of its  
interface.

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to