win32com and ADO

Chris Curvey ccurvey at gmail.com
Wed May 11 13:47:49 EDT 2005


I'm having one of those weeks.

I have this pattern all over my code.

result = conn.execute("select * from foo")

while not result.EOF:
    doSomething()
    result.MoveNext()

So recently I got around to running makepy on all of the Microsoft
ActiveX Data Objects, and now every call to that pattern is returning:

'tuple' object has no attribute EOF

can anyone tell me how I'm supposed to be using EOF?

can anyone point me to the file that has the function lists?

can anyone tell me how to undo what I've done?




More information about the Python-list mailing list