Hello,
I would like to query a big table and display the information. But at
the top of the list I'm going to display, I need a little counter that
tell how many items where returned.
What would be the most efficient way to count the results ?
client_list = session.query(Client).select()
Should I:
1/ Use the python len() function:
len(client_list)
2/ Use the count() query method. But doesn't it re-query the database ?
Thanks for your advices.
Regards,
--
Alexandre CONRAD
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---