You are not logged in.
Pages: 1
Hi, is there a way to limit the number of records that is passed from the server to the client, even if the search retrieves more than that limit?I'm using the ORM with SQlite and HttpServer.
Offline
You have a LIMIT clause at the SQL level.
If I understand correctly, you want it at ORM level?Just add 'LIMIT ...' in the WHERE clause (even if it is void).