What doe you mean about a very huge amount of data. A dataset can be controlled by fetching (just read records givven by you. By scrolling read another batch of records). A query can make your dataset as big as you want.
I guess he wants pagination like in websites.One could just take a grid, and load it with a query parameterized with the relevant parameters.But it depends on what exactly you want to do. Do you want to minimize number of queries, query sizes, or just gui ?
Quote from: marcov on December 16, 2014, 10:46:07 amI guess he wants pagination like in websites.One could just take a grid, and load it with a query parameterized with the relevant parameters.But it depends on what exactly you want to do. Do you want to minimize number of queries, query sizes, or just gui ?exactly. I want to do the same like in websites, I want to minimize the size of results and make a nice gui.