I found an other way. Now it works with Python too:
>>> from win32com.client import Dispatch
>>> adoCon = Dispatch("ADODB.Connection")
>>> adoCon.Provider = "ADSDSOObject"
>>> adoCon.Open("", "cn=Administrator;cn=Users,dc=strebig,dc=de","AdminsPW")
>>> adoRec = Dispatch("ADODB.Recordset")
>>> ado
I use the ADO-Components free available from
http://http://www.microsoft.com/data/ado/ .
As DB-Provider I use ActiveDirectory insteed
an classic SQL-DB.
I belive the problem is, that Python do not know
the COM-Type of "adoRec" in attached programm-
snips.
First, what I get from Python:
PythonWi