How to map a unicode-char-column-table?

Issue #849 resolved
Former user created an issue

Unicode is important for l18n use. And many programer want to use their self language to name table, column, field.

SQLAlchemy can map unicode tablename, but can't do unicode columnname?

Comments (3)

  1. Mike Bayer repo owner

    we support unicode column names fully. heres some test coverage specific to the orm: source:sqlalchemy/trunk/test/orm/unitofwork.py@3658#L187 .

    please provide a failing test case and an actual bug before reopening this ticket. note that both MySQL and Postgres have a lot of quirks when using unicode schema identifiers, particularly when dealing with foreign keys (we have a few tests for PG specifically that we just dont work, due to PG, and Oracle doesnt do it at all....heres the base test suite: source:/sqlalchemy/trunk/test/sql/unicode.py)

  2. Log in to comment