[sqlalchemy] Re: convert_unicode problem

2007-10-22 Thread Moo
Michael, congratulations on releasing SA 0.4.0! I tried the code above with SA 0.4.0, no error occured and I got 'unicode' that I'd like to get! I don't know which change has resolved the problem, I'm so glad, though. Thanks! --~--~-~--~~~---~--~~ You received

[sqlalchemy] Re: convert_unicode problem

2007-10-09 Thread Moo
I've tried r3561 and r3577, the reflection is done with no errors. That's fine! But another error is occured on querying. Below is the traceback. -- Traceback (most recent call last): File model.py, line 24, in module

[sqlalchemy] Re: convert_unicode problem

2007-10-09 Thread Moo
I tried some patterns - NLS_LANG set/unset, convert_unicode True/ False, encoding set/unset - with logging.(r3578) As a result, I got almost the same exceptions and logs.(see below) In addition, that exception raises when 'filter_by' with 'NUMBER' columns too. So, I think the latest problem does

[sqlalchemy] Re: convert_unicode problem

2007-10-05 Thread Moo
Thanks Michael. I applied that patch and run that code above, then I got a different NotSupportedError. traceback) - Traceback (most recent call last): File model.py, line 19, in module emp = Table('emp', metadata,

[sqlalchemy] convert_unicode problem

2007-10-04 Thread Moo
Hi all. I'm trying to switch from SA 0.3 to 0.4. I tested simple SELECT, I've got a NotSupportedError. Python: 2.5.1 SQLAlchemy: 0.4 beta6 cx_Oracle: 4.3.2 Environment variable: NLS_LANG=JAPANESE_JAPAN.JA16SJIS sample code) - from