ArcPad Scripting Object Model
Recordset Collection
See Also  Members  Send comments on this topic.

Glossary Item Box

Description

 

A RecordSet object represents the entire set of records from a layer's database table (shapefile or AXF layer) or a stand-alone database table. At any given time, the RecordSet object refers only to a single record within the set as the current record.

Remarks

A RecordSet object is a creatable object in ArcPad. Here's an example of creating a new RecordSet object:

VBScript
Dim myRS
Set myRS = Application.CreateAppObject("RecordSet")

JScript
var myRS = Application.CreateAppObject("RecordSet");

RecordSet objects derived from ArcPad AXF layers are forward-only. That is, the MovePrevious and MoveLast methods are not supported for these RecordSets.
RecordSet objects derived from shapefile layers or DBF files are scrollable. They support all the MoveXXX methods.

See Also

© 2013 All Rights Reserved.