I have some form with more than 5000 entries.
I developed custom grid that display all the entries that exist.
I use GetRecords method that doesn't expose pagination at all.
My query takes more than a minute until I get the records.
Maybe there is another API that I don't familiar with?
We had a similar problem in accessing records from forms. We did not find another API, so we ended up doing it ourself.
We added an index we needed to the UFRecords table and accessed the records directly using a new database connection. This gave us full control and the speed we needed.
Forms GetRecords
Hi All,
I have some form with more than 5000 entries. I developed custom grid that display all the entries that exist. I use GetRecords method that doesn't expose pagination at all. My query takes more than a minute until I get the records. Maybe there is another API that I don't familiar with?
Best Regards Guy
Hallo Guy,
We had a similar problem in accessing records from forms. We did not find another API, so we ended up doing it ourself.
We added an index we needed to the UFRecords table and accessed the records directly using a new database connection. This gave us full control and the speed we needed.
regards, Frans
Hi,
We did the same solution.
We access the forms table directly.
I hope someone will offer better solution.
Regards
Guy
is working on a reply...