Link to home
Start Free TrialLog in
Avatar of huangs3
huangs3Flag for Canada

asked on

How to use ADODB objects in Python?

Hi Experts:

    I am writing a Python program that needs to use ADODB to run SQL commands. However, the program needs to be run in under a restrictive policy that does not allow many third party softwares including Python for Windows extensions (win32com.client), which means I cannot do something like
******************************************************
con = win32com.client.Dispatch("ADODB")
******************************************************

    I may also need to use other COM or NET objects in Python, what shall I do?
    Thank you!
ASKER CERTIFIED SOLUTION
Avatar of Roger Baklund
Roger Baklund
Flag of Norway image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of huangs3

ASKER

Thanks cxr. Seems cannot avoid. It was very lucky that I found the company allows the Python Win Extension.