[sqlalchemy] Re: Elixir: Enum and accented characters (non-ASCII character)

2012-01-17 Thread Pierre Bossé
Thank you Michael for your answers, but This does not work even with the UFT-8 encoding. I changed my program with utf-8: = # -*- coding: utf-8 -*- from elixir import * from sqlalchemy import create_engine class TestEnum(Entity):

Re: [sqlalchemy] Re: Elixir: Enum and accented characters (non-ASCII character)

2012-01-17 Thread Michael Bayer
On Jan 17, 2012, at 7:46 AM, Pierre Bossé wrote: Thank you Michael for your answers, but This does not work even with the UFT-8 encoding. 2012-01-17 07:10:03,405 INFO sqlalchemy.engine.base.Engine CREATE TABLE TEST_ENUM ( id INTEGER NOT NULL, MY_ENUM NVARCHAR2(100),

Re: [sqlalchemy] Re: Elixir: Enum and accented characters (non-ASCII character)

2012-01-17 Thread Michael Bayer
On Jan 17, 2012, at 12:29 PM, Michael Bayer wrote: OK but very significantly, the behavior has changed. SQLAlchemy is now sending in the correct DDL to Oracle.What remains is whether or not it gets to cx_oracle in the best way possible as well as if cx_oracle does the right thing