[sqlalchemy] Re: any effort getting sqlalchemy to work on ironpython is going on ?

2008-09-18 Thread sakesun
Just try IronPython beta5. And it work now. :D On 12 ก.ย., 10:01, sakesun [EMAIL PROTECTED] wrote: I need sqlalchemy to work on ironpython (1.2 or 2.0b) sqlalchemy fail on ironpython even with simple use case like create simple Table definition. from sqlalchemy import Table, Column,

[sqlalchemy] Re: any effort getting sqlalchemy to work on ironpython is going on ?

2008-09-13 Thread Dan Eloff
On Thu, Sep 11, 2008 at 10:01 PM, sakesun [EMAIL PROTECTED] wrote: Traceback (most recent call last): File stdin, line 1, in module IndexError: Index was outside the bounds of the array. I've had that before on complex python packages (e.g. Jinja2), I'm pretty sure it's an internal error

[sqlalchemy] Re: any effort getting sqlalchemy to work on ironpython is going on ?

2008-09-12 Thread Michael Bayer
On Sep 11, 2008, at 11:01 PM, sakesun wrote: I need sqlalchemy to work on ironpython (1.2 or 2.0b) sqlalchemy fail on ironpython even with simple use case like create simple Table definition. from sqlalchemy import Table, Column, Integer, String, MetaData, ForeignKey metadata =

[sqlalchemy] Re: any effort getting sqlalchemy to work on ironpython is going on ?

2008-09-12 Thread Kyle Schaffrick
On Fri, 12 Sep 2008 11:11:50 -0400 Michael Bayer [EMAIL PROTECTED] wrote: On Sep 11, 2008, at 11:01 PM, sakesun wrote: I need sqlalchemy to work on ironpython (1.2 or 2.0b) sqlalchemy fail on ironpython even with simple use case like create simple Table definition. from