Page 1 of 1

UniQuery's Fetch Rows Property

Posted: Fri 06 Dec 2013 16:38
by ninadgac
At my UniQuery component FetchRows property is set to 25 by default. While I dont want to set any limit on FetchRows , I want extract as many as rows are there in DB table may be it 25 or 1000 , it is not possible to define FetchRows count property exactly in such cases where we are not aware about number of records.

How to overcome this problem?

Re: UniQuery's Fetch Rows Property

Posted: Mon 09 Dec 2013 07:20
by AlexP
Hello,

To solve the problem, you should either set the FetchAll property to True. If you set the FetchAll property to true, all the data will be fetched at once in DataSet

UniQuery.SpecificOptions.Values['FetchAll'] := 'True';