Is there a library for using MS Access database in python? The win32 module is not as easy as the MySQL library. Is there a simpler way to use MS Access with Python?
|
Depending on what you want to do, pyodbc might be what you are looking for.
|
||||
|
I don't think win32 is hard. Try use its odbc module. Example of code working with ODBC and PostgreSQL database:
This is very similar for every db driver I used in Python and Jython (I work with PostgreSQL, Oracle and Informix). |
|||
|
I had some recent success using pywin32's adodbapi module. The following snippet was taken from this website:
|
|||
|
|
|
You can use pypyodbc to easily create an empty Access MDB file on win32 platform, and also compact existing Access MDB files. It can be as easy as:
More over, as an dbi 2.0 ODBC library, pypyodbc is highly compatible with pyodbc, you can do SQL database queries like SELECT, INSERT, UPDATE with the library. Here is the full Tutorial about pypyodbc's Access support. Disclaimer: I'm the developer of pypyodbc. |
|||
|
|