Re: [SQLObject] Re: Hi guys. Please, I need help
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Ian B. <ia...@co...> - 2004-04-22 15:52:32
|
Scott Russell wrote: > I also flipped the BoolCol to an IntCol because I've never used it and I > couldn't figure out how to. :) (Is BoolCol a postgres-only column?) BoolCol should work anywhere, it will just end up as a TINYINT or INT on database that don't have BOOLEAN (which is everything but Postgres). It also coerces non-integers into booleans, so it's better than just an IntCol. Ian |