[sqlalchemy] Re: help with IronPython

2007-06-22 Thread Paul Johnston
Hi, pyodbc, pymssql, and adodbapi each use binary modules, so they would require some (unknown amount of) conversion to work with IronPython. Actually, adodbapi is pure Python, although it does depend on the win32com binary module. I wrapped a module around the IPCE adaptor module to meet

[sqlalchemy] Re: help with IronPython

2007-06-21 Thread d_henderson
On Jun 20, 2:09 pm, Rick Morrison [EMAIL PROTECTED] wrote: The SA MSSQL module currently supports the three DBAPI modules mentioned above (pyodbc, pymssql, adodbapi). You'll need to either get one of those three to import under IronPython, or add support for the IPCE adaptor. pyodbc,

[sqlalchemy] Re: help with IronPython

2007-06-20 Thread Rick Morrison
The SA MSSQL module currently supports the three DBAPI modules mentioned above (pyodbc, pymssql, adodbapi). You'll need to either get one of those three to import under IronPython, or add support for the IPCE adaptor. On 6/20/07, d_henderson [EMAIL PROTECTED] wrote: I recently tried SA