There are several ways, what is the best one?
|
|
There are three ways to iterate over a result set. The best way in terms of both readability and performance is usually to use the built-in cursor iterator. curs.execute('select * from people')
for row in curs:
print row
You can fetch all the rows into a list, but this can have some bad side effects if the result set is large.
for row in curs.fetchall():
print row
Finally, you can loop over the result set fetching one row at a time. In general, there's no particular advantage in doing this over using the iterator. If there is something in your programming logic that seems to indicate there is an advantage in doing this, perhaps you should reconsider your programming logic. row = curs.fetchone()
while row:
print row
row = curs.fetchone() |
||||
|
|
|
There's also the way Also, this should be applicable to all PEP-249 DBAPI2.0 interfaces, not just Oracle, or did you mean just fastest using Oracle? |
||
|
|
|
|
My preferred way is the cursor iterator, but setting first the arraysize property of the cursor.
In this example, cx_Oracle will fetch rows from Oracle 256 rows at a time, reducing the number of network round trips that need to be performed |
||
|
|
