[sqlalchemy] New H2 dialect

2010-02-23 Thread Tal
, embedded HTML manager, etc. At this point, I only have it working via Jython/zxJDBC, and that's probably where the interest will stay. Still, good start, no? How does one go about contributing? -Tal -- You received this message because you are subscribed to the Google Groups sqlalchemy group

[sqlalchemy] New dialect -- Why am I getting rollbacks?

2010-02-23 Thread Tal
, it seems that after every flush(), I am getting a ROLLBACK send from SQLAlchemy. Why is this happening? Any ideas? -Tal -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to sqlalch...@googlegroups.com. To unsubscribe

[sqlalchemy] how sum elements with filters

2009-08-11 Thread Doron Tal
Hi sqlalchemy, I'm a newbie to SA. I hope you could help me with the following problem. Say that I have: class Position(Base): __tablename__ = 'Position' id = Column('id', Integer, primary_key=True) position = Column('name', String) #center, guard etc' class Player(Base):