4 messages in com.googlegroups.sqlalchemy[sqlalchemy] Re: TEXT Column type
FromSent OnAttachments
voltron30 Aug 2007 13:06 
voltron30 Aug 2007 13:08 
jason kirtland30 Aug 2007 13:13 
voltron30 Aug 2007 13:27 
Subject:[sqlalchemy] Re: TEXT Column type
From:jason kirtland (je@discorporate.us)
Date:08/30/2007 01:13:25 PM
List:com.googlegroups.sqlalchemy

voltron wrote:

Hi all

What do I have to import to be able to use the column type TEXT?

from sqlalchemy import Column, TEXT Column('mytext', TEXT)

or use 'String' without a length qualifier:

from sqlalchemy import Column, String Column('mytext', String)