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

2013-01-16 Thread jgruber
I complete ripped up my code.. Working back through an argument to __init__ the object which inherits from my data model.. DUH! Thanks.. found it. You were create =None killed it.. John On Wednesday, January 16, 2013 10:56:44 PM UTC-6, Michael Bayer wrote: > > > On Jan 16, 2013, at 11:42 PM,

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

2013-01-16 Thread Michael Bayer
On Jan 16, 2013, at 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), nullable=False, unique=True) > > I creat

[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