[sqlalchemy] Re: Boolean, Declerative, MySQL 5.2

2008-07-20 Thread Bobby Impollonia
I am using Column(Boolean) with declarative and MySQL and it is working fine. In MySQL itself the type is 'tinyint(1)' but they provide 'bool' and 'boolean' as synonyms if you prefer. On Sat, Jul 19, 2008 at 7:48 AM, Heston James - Cold Beans [EMAIL PROTECTED] wrote: Hello Guys, I'm looking

[sqlalchemy] Re: Boolean, Declerative, MySQL 5.2

2008-07-19 Thread Heston James - Cold Beans
I am using Column(Boolean) with declarative and MySQL and it is working fine. In MySQL itself the type is 'tinyint(1)' but they provide 'bool' and 'boolean' as synonyms if you prefer. Bobby, Thank you for this, I went with the tinyint(1) and it seems to be working great! Thanks, Heston