johnf wrote .. > Would someone please refresh my memory regarding the "getDictCursorClass" > function. Is it required that I create a "DictCursor" or can I just return > a > 'Cursor'??? At one time I recall that "DictCursor" was not required. > Somewhere in the code a standard cursor gets converted to a "DictCursor"???
If the dbapi module provides for a dictionary cursor class, return that. If not, return the regular cursor class, and Dabo will create the dict cursor. Since the dbapi stuff is written in C, it's more efficient if we let those modules do the work, which is why we prefer using their native dict classes rather than doing it for every cursor. BTW, did your CDs work out OK? -- Ed --- StripMime Report -- processed MIME parts --- multipart/mixed text/plain (text body -- kept) --- _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
