[sqlalchemy] Re: column type for transparent normalization

2006-12-03 Thread [EMAIL PROTECTED]
Michael Bayer skrev: > Johan Hahn wrote: > > Say I was about to make a telephone book database. I > > would need four columns: id, first name, last name, and > > phone number. > > > > Table('telephone_book', metadata, > > Column('id', Integer, primary_key=True), > > Column('first', Unicode(1

[sqlalchemy] Re: column type for transparent normalization

2006-12-03 Thread Michael Bayer
Johan Hahn wrote: > I've been using sqlachemy for a month and I like it so far. > Documentation could have been more precise IMO, it is > confusing that the indroduction discusses so many ways > to do the same things. Im partly confused since my prior > experience with orm tools is limited. the