Re: [sqlalchemy] Text column not populating on object correctly

2013-01-16 Thread jgruber
11:42 PM, jgruber wrote: > > > I'm using SQLAlchemy 7.8 with sqlite3. > > > > I have a Column setup in my schema of type Text, defined as follows: > > > > marker_data = Column(Text(length=None, convert_unicode=False, > assert_unicode=None), nullabl

[sqlalchemy] Text column not populating on object correctly

2013-01-16 Thread jgruber
I'm using SQLAlchemy 7.8 with sqlite3. I have a Column setup in my schema of type Text, defined as follows: marker_data = Column(Text(length=None, convert_unicode=False, assert_unicode=None), nullable=False, unique=True) I create my object and I see the SQL generated just fine. I have an