[sqlalchemy] Re: ANN: sqlalchemy-validations 0.1

2008-01-27 Thread Nebur
Code hardening is always good ... I like your idea. Did you already think about easy validation of a set of depending fields, too? Ruben --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to

[sqlalchemy] Re: Asynchronous SQLAlchemy

2008-01-27 Thread Manlio Perillo
Mike Lewis ha scritto: Hi All, I'm starting a new project that will probably be using Twisted, but I want to use SQLAlchemy as well. I saw a couple of old posts about Asynchronous SQLAlchemy and two different implementations, but neither sAsync nor nadbapi seem to be maintained (or at

[sqlalchemy] self-referential table question

2008-01-27 Thread Steve Zatz
I realize this is actually an SQL question but I haven't been able to figure out the answer. In a simple self-referential table, the following produces all the Nodes that are parents to some child node(s): node_table_alias = node_table.alias() parents = session.query(Node).filter(Node.id ==

[sqlalchemy] Re: InvalidRequestError when I try to save object

2008-01-27 Thread dezhong liu
hello, how are you,i use the delete() method ,but it have the same exception, i see that you use the save_or_update() method , i look for the document, but can't find a right method to do it, thanks 2008/1/15, Rick Morrison [EMAIL PROTECTED]: Well, the my_service.get_people() most likely uses

[sqlalchemy] Re: self-referential table question

2008-01-27 Thread Michael Bayer
On Jan 27, 2008, at 8:06 PM, Steve Zatz wrote: I realize this is actually an SQL question but I haven't been able to figure out the answer. In a simple self-referential table, the following produces all the Nodes that are parents to some child node(s): node_table_alias =