Packagecom.salesforce.results
Classpublic dynamic class QueryResult

Class returned as a result of the call to Query() and QueryMore(), contains a result code and an array of records, each record is a single SObject.

See also

Apex Developer Guide


Public Properties
 PropertyDefined by
  done : Boolean
QueryResult
  queryLocator : String
QueryResult
  records : ArrayCollection
QueryResult
  size : int
QueryResult
Public Methods
 MethodDefined by
  
QueryResult(result:ObjectProxy)
QueryResult
Property detail
doneproperty
public var done:Boolean

This property can be used as the source for data binding.

queryLocatorproperty 
public var queryLocator:String

This property can be used as the source for data binding.

recordsproperty 
public var records:ArrayCollection

This property can be used as the source for data binding.

sizeproperty 
public var size:int

This property can be used as the source for data binding.

Constructor detail
QueryResult()constructor
public function QueryResult(result:ObjectProxy)Parameters
result:ObjectProxy