Re: [sqlalchemy] sqlalchemy is ignoring the CheckConstraint name parameter while creating a check constraint

2011-10-21 Thread Mariano Mara
On 21.10.11 20:09, Michael Bayer wrote: > Because not every DB supports this (such as MySQL), we have not yet > implemented the feature of named column level constraints across the board > yet. We'd have to either implement it only for those DBs which support it, > or add exceptions to those wh

Re: [sqlalchemy] sqlalchemy is ignoring the CheckConstraint name parameter while creating a check constraint

2011-10-21 Thread Michael Bayer
Because not every DB supports this (such as MySQL), we have not yet implemented the feature of named column level constraints across the board yet. We'd have to either implement it only for those DBs which support it, or add exceptions to those which don't. The main job is a. figure out which

[sqlalchemy] sqlalchemy is ignoring the CheckConstraint name parameter while creating a check constraint

2011-10-21 Thread Mariano Mara
Hi all, the subject pretty much explains it all. Here's a complete example of the issue. Any tips will be appreciate. Regards, Mariano Python 2.7.2 (default, Oct 14 2011, 23:34:02) [GCC 4.5.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import sqlalchemy >