Hi Akira,

akira wrote:
 > A trivial thing, How does one limit results fetched from a database?

result = store.find(...)
result.config(limit=10)

You can specify an offset, too:

result = store.find(...)
result.config(offset=10, limit=10)

Thanks,
J.

-- 
storm mailing list
[email protected]
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/storm

Reply via email to