wwXML::CursorToRS
This method converts the currently open cursor to an ADO recordset.
This method is method is more efficient than VFPCOMs CursorToRS method and is provided here mainly because it relies on an XML export and formatting to perform the appropriate conversions.
o.CursorToRS()
Object - Recordset object or .NULL. Check for NULL for error checking.
Remarks
The recordset is created as a disconnected recordset so it is not connected to any datasource.
Example
USE TT_CUST SET ORDER TO COMPANY
loXML = CREATE("wwXML") loRS = loXML.CursorToRS() IF ISNULL(loRS) RETURN ENDIF
FOR x=1 to loRS.RecordCount ? loRS.Fields("company").value loRS.MoveNext ENDFOR
See also
Class wwXML (High Level Methods)© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic