Re: [cx-oracle-users] Results as dict
Brought to you by:
atuining
From: Andy H. <and...@gm...> - 2006-11-09 21:50:45
|
Another one for your list is db_row which I've used quite a lot: http://opensource.theopalgroup.com/ Does all the normal things you'd expect - lets you reference results by either index, name or attribute. It does it in a space efficient manner, by only having a single dict for the whole result set (everything else is just stored as the tuple returned by the DBAPI). There's also a C extension module for slightly speedier performance. Andy |