[sqlalchemy] Single Table Inheritance with same Column Name

2011-05-28 Thread Dan Getelman
Hi all, I'm running SQLAlchemy 0.7.0, against MySQL 5.1. I'm having issues with a field that I'd like shared between the classes in single table inheritance that I would like to have referred to differently in the subclasses: class Post(Base): __tablename__ = 'posts' id =

[sqlalchemy] Persistence engine for GWT

2011-05-28 Thread J.Ganesan
If you are considering GWT and looking for easy saving/retrieving java domain objects, please consider the persistence engine from www.DataStoreGwt.com . The persistence engine enables a developer to save the java domain object graph in just one-line of client code. Besides, the developer can

[sqlalchemy] Re: Single Table Inheritance with same Column Name

2011-05-28 Thread NiL
Hi http://www.sqlalchemy.org/docs/06/orm/extensions/declarative.html?highlight=synonym#sqlalchemy.ext.declarative.synonym_for seems close to what you want -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to

[sqlalchemy] Multi-Processing Environment

2011-05-28 Thread ddarko
http://lists.unbit.it/pipermail/uwsgi/2011-May/002078.html : ...Unfortunately, when running our app in uWSGI with more than one worker, we get sporadic, but frequent, sqlalchemy-related exceptions when testing under load. Following is an example of one of the more common errors we get. Error -

[sqlalchemy] Re: Multi-Processing Environment

2011-05-28 Thread NiL
are you using sqlite ? if so : http://groups.google.com/group/sqlalchemy/browse_thread/thread/5e08e49fa1722f91/55940423d2e6f99f?lnk=gstq=nullpool#55940423d2e6f99f http://www.sqlalchemy.org/docs/06/core/pooling.html?highlight=nullpool#switching-pool-implementations might be of help -- You

Re: [sqlalchemy] Multi-Processing Environment

2011-05-28 Thread Michael Bayer
On May 28, 2011, at 4:25 AM, ddarko wrote: http://lists.unbit.it/pipermail/uwsgi/2011-May/002078.html : ...Unfortunately, when running our app in uWSGI with more than one worker, we get sporadic, but frequent, sqlalchemy-related exceptions when testing under load. Following is an example