[sqlalchemy] [ANN] Rum 0.2 has been released

2009-01-26 Thread Alberto Valverde
Hi, I'm proud to announce that we've just made the first public release of Rum and its SQLAlchemy plugin. Rum is an extensible WSGI web application to provide a RESTful interface for your app's model objects. You can think of it as an alternative to Django's admin for the non-django world.

[sqlalchemy] Possible bug with Column.autoincrement in 0.5.0beta1

2008-07-13 Thread Alberto Valverde
Hi, I'm not sure if this is really a bug but at least it's not intuitive... :) I'm trying to determine if the primary key for a table will be autogenerated by the database or not by peeking into Column.autoincrement, however, the following unit test fails: import unittest from sqlalchemy import

[sqlalchemy] Strange behaviour when mapping tables without a real PK

2007-08-15 Thread Alberto Valverde
Hi, I've encountered a strange behaviour when mapping a table which hasn't got a PrimaryKeyConstraint declared but a primary_key is declared when building the mapper (in order to be able to map it). Queries through the mapper work fine until the limit keyword is used. Am I doing something

[sqlalchemy] Re: Strange behaviour when mapping tables without a real PK

2007-08-15 Thread Alberto Valverde
On Aug 15, 2007, at 6:55 PM, Michael Bayer wrote: thats definitely not going to work right now. I added feature enhancement # 740, currently its milestone 5 unless we start getting more time for some of these things. put primary_key on your Table for now. I've disabled the eager

[sqlalchemy] Re: Strange behaviour when mapping tables without a real PK

2007-08-15 Thread Alberto Valverde
On Aug 15, 2007, at 7:48 PM, Michael Bayer wrote: On Aug 15, 2007, at 1:35 PM, Alberto Valverde wrote: On Aug 15, 2007, at 6:55 PM, Michael Bayer wrote: thats definitely not going to work right now. I added feature enhancement # 740, currently its milestone 5 unless we start getting