PyPyODBC - A Pure Python ctypes ODBC module Features - Pure Python, compatible with IronPython and PyPy (tested on Win32) - Almost totally same usage as pyodbc - Simple and small - the whole module is implemented in a less than 2000 lines python script
You can simply try pypyodbc in your existing pyodbc powered script with the following changes: #import pyodbc <-- The original pyodbc importing line import pypyodbc as pyodbc pyodbc.connect(...) # pypyodbc is now doing pyodbc's job History Version 0.8.6 Sep 23 2012 Added ODBC pooling feature Bit, GUID type support Other fixes and improvements Version 0.8.5 Sep 16 2012 Numeric type fix Long and integer differentiate Other pyodbc compatibility improvements; Version 0.8.4 Sep 9 2012 Improved compatibility with pyodbc; Many underlying bug fixes; Version 0.8.3 Sep 1 2012 sql_longvarchar handling fix; performance optimization; Version 0.8.2 Aug 27 2012 Differentiate sql_varchar and sql_longvarchar; Initial support for SQLAlchemy; Version 0.8.1 Aug 26 2012 Fixed the long type parameter issue; Added support for IronPython; Version 0.8 Aug 25 2012 Added getinfo method; Version 0.7 Jul 28 2012 Fixed nchar/ntext/nvarchar string truncat problem ; Version 0.6 Jul 4 2012 Added Cursor.commit() and Cursor.rollback(); Added readonly keyword to connect; Version 0.5 Jun 23 2012 Initial release; -- http://mail.python.org/mailman/listinfo/python-list