Using python 2.4 here. I keep getting "TypeError: len() of unsized object" when trying to use a mx.ODBC cursor as an iterator: cursor.execute(query) for row in cursor: # do something with the row cursor does have an __iter__ and a next() method, and calling .next() does give me a result. Am I doing something wrong here? -- Martijn Pieters