On Tue, May 31, 2011 at 8:40 AM, Wolfgang Meiners <[email protected]> wrote: > metadata = MetaData('sqlite://') > a_table = Table('tf_lehrer', metadata, > Column('id', Integer, primary_key=True), > Column('Kuerzel', Text), > Column('Name', Text))
Use UnicodeText instead of Text.
> A_record = A_class('BUM', 'Bäumer')
If this is python2.x, use u'Bäumer' instead.
--
With best regards,
Daniel Kluev
--
http://mail.python.org/mailman/listinfo/python-list
