Hi Lukas :) 

Happy to see you again after our brief acquaintance at stackoverflow 
( 
http://stackoverflow.com/questions/19553405/using-sql92-syntax-for-joining-table-to-itself-moving-from-ingres-specific-to-j
 
)

So basically for me to get it right: when the cache in memory is exhausted 
by doing fetches on the cursor, a new fetch on the database is done?

eg: table with 1000 records

fetchLazy(100) sets the jdbc to retrieve 100 records at a time;
first fetch(30) provokes first 100 records to be read from the database and 
go to jooq cache;
second fetch(30) doesn't provoke any database activity (since it goes to 60 
out of 100 still on cache)
third fetch(30) idem;
fourth fetch(30) provokes next 100 records to be read from the database;
rinse and repeat?


-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to