How does sqlalchemy behave when querying tables with large number of rows. I
see it constructing a query and getting all results and mapping
them into instances before iterating through them for a query like

for node in opsdb.queryNodes():
      print node


Is there a way to change this behaviour to have it return an iterator as a
result to the query and have it build instances one at a time.

/kk

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to