views:

458

answers:

1

Does anyone know which if any db-api 2.0 drivers work with IronPython? If so, has anyone tried using it with SQLAlchemy, SQLObject or the Django ORM?

+1  A: 

Here's some answers for sqlalchemy:

http://groups.google.com/group/sqlalchemy/browse_thread/thread/ea3ee246680c9d14?pli=1

At the end of the thread, someone tried a beta of IronPython in September last year and it was working.

Also here: SqlAlchemy discussion.

Support for jython, ironpython, others is much more of a drop-in as existing SQL compilation code can be reused.

DoxaLogos