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, Integer, String, MetaData, 
> >>> ForeignKey
> >>> metadata = MetaData()
> >>> users_table = Table('users', metadata,
>
> ...     Column('id', Integer, primary_key=True),
> ...     Column('name', String),
> ...     Column('fullname', String),
> ...     Column('password', String)
> ... )
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
> IndexError: Index was outside the bounds of the array.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to