FW: NEED SOLUTION FOR ERROR

2020-10-11 Thread hey
Sent from Mail for Windows 10 From: hey Sent: Saturday, October 10, 2020 7:40 PM To: python-list@python.org Subject: NEED SOLUTION FOR ERROR I am Akshat Sharma one of python user from INDIA . I am facing problem in getting pip installed. When I am trying to install a module using PIP it

Re: Working with Access tables and python scripts

2015-04-14 Thread hey . ho . fredl
I don't know how to start a Python script from Access, but you could definitely do it the other way around, reading the Access database from Python. An example: --- import pyodbc ODBC_DRIVER = '{Microsoft Access Driver (*.mdb)}' connstr = 'DRIVER={0};DBQ={1}'.format(ODBC_DRIVER, 'filename.mdb')