Reputation:
Can you list some resources that explain using ADODBAPI in python.?
Upvotes: 0
Views: 3839
Reputation: 2333
If you are referring to the Python package, here is a quick reference guide:
http://adodbapi.sourceforge.net/quick_reference.pdf
This includes a link to
https://www.connectionstrings.com/
which will help you format the connection string for whatever database file type you are using.
Upvotes: 0
Reputation: 43136
ADO can be accessed with win32 extensions for python.
ADO is acessible through COM objects.
You can have a look at this page that would give a lot of info: http://www.ecp.cc/pyado.html
Upvotes: 1