function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AccelciaAccelcia 

What max record size from Query Result ?

Hi..

 

Can any body help me to resolve this issue..

 

Can any one know what max size of Query event record length?

 

public function fetchExpensesForTest(event:QueryResult):void{
Alert.show(event.records.length+" vs "+ event.size);
}


for Eg;

 Now  i m excuting the one Query and i m getting that result through result handler such as Query result. if suppose the event size(event.size) from Query Result varied when compare to event record(event.record.length).

 

Output of the Above Coding is " 1600 vs 1700"

 

Here my event size is 1700 but my records length only 1600.

 

Is that any fixed value in Query result records?

 

please resolve this.....

 

 

regards

Vinoth