[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, 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
-~--~~~~--~~--~--~---



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

2008-09-11 Thread sakesun


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.

and wonder if any effort or interest already exists in running sa  ip
together ?
If none, then I may want to take on this (need it for my work)
and will be appreciate some clue to speed myself up.

Thanks

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---