[sqlalchemy] Re: Object-oriented engine?

2007-02-09 Thread svilen
how much OO u want? There is SA, which has ORM layer over sql, so can become a somewhat object persistency. There are turboentity/activemapper, currently joining together, which are simple declarative layer on top of SA. Then here is this 'sawrapper' of mine, which is also declarative and

[sqlalchemy] Re: Object-oriented engine?

2007-02-09 Thread Marco Mariani
svilen wrote: how much OO u want? He's not using a DBMS. He has more OO-ness than SA could give him :-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to

[sqlalchemy] Re: Object-oriented engine?

2007-02-09 Thread chmod
Thanks for the tips, however I mean this DB we have is pure objects, there are no tables. So there isn't much of a logical leap to strap python on top of it, however you can't use and SQL. I guess I was wondering how tied to SQL SA is? If it's fundamental to the core, then I'm out of luck. But it

[sqlalchemy] Re: Object-oriented engine?

2007-02-09 Thread svilen
Thanks for the tips, however I mean this DB we have is pure objects, there are no tables. so u have to define the O-to-R mapping of your objects into tables, then ... So there isn't much of a logical leap to strap python on top of it, however you can't use and SQL. I guess I was wondering