PyPyODBC 0.5 alpha released! (A Pure Python ODBC module)

江文 jiangwen365 at gmail.com
Fri Jun 15 10:08:41 EDT 2012


PyPyODBC - A Pure Python ctypes ODBC module

Features
    -    Pure Python, compatible with PyPy (tested on Win32)
    -    Almost totally same usage as pyodbc

You can simply try pypyodbc in your existing pyodbc powered script
with the following changes:

               #import pyodbc                        <-- Comment out
the original pyodbc importing line
               import pypyodbc as pyodbc     # Let pypyodbc "pretend" the pyodbc
               pyodbc.connect(...)                  # This is pypyodbc
pretending pyodbc! They have same APIs!
...


Homepage:        http://code.google.com/p/pypyodbc/

Demo Script:
http://code.google.com/p/pypyodbc/source/browse/trunk/pypyodbc/test.py



More information about the Python-list mailing list