Includes functions that you call as needed when constructing a WDDX record set. For more information on using this object, see Using WDDX in the Developing ColdFusion Applications.
Functions
Function syntax |
Description |
---|---|
object.addColumn(name) |
Adds a column to all rows in a WddxRecordset instance. |
object.addRows(n) |
Adds rows to all columns in a WddxRecordset instance. |
object.dump(escapeStrings) |
Displays WddxRecordset object data. |
object.getField(row,col) |
Returns the element in a row/column position. |
object.getRowCount() |
Indicates the number of rows in a WddxRecordset instance. |
object.setField(row, col, value) |
Sets the element in a row/column position. |
object.wddxSerialize(serializer) |
Serializes a record set. |
Returns
HTML table of the WddxRecordset object data.
Usage
Convenient for debugging and testing record sets. The boolean parameterescapeStringsdetermines whether<>&characters in string values are escaped as<>&in HTML.