Python – ny pywin32 odbc connector documentation available

odbcpyodbcpythonwindows

What is a good pywin32 odbc connector documentation and tutorial on the web?

Best Answer

The only 'documentation' that I found was a unit test that was installed with the pywin32 package. It seems to give an overview of the general functionality. I found it here:

python dir\Lib\site-packages\win32\test\test_odbc.py

I should also point out that I believe it is implements the Python Database API Specification v1.0, which is documented here:

http://www.python.org/dev/peps/pep-0248/

Note that there is also V2.0 of this specification (see PEP-2049)

On a side note, I've been trying to use pywin32 odbc, but I've had problems with intermittent crashing with the ODBC driver I'm using. I've recently moved to pyodbc and my issues were resolved.