Adds a column to all rows in a WddxRecordset instance.
object.addColumn(name)
| Parameter | Description |
|---|---|
|
object |
Instance name of the WddxRecordset object |
|
name |
Name of the column to add |
None.
Adds a column to every row of the WDDX record set. Initially the new column's values are set to NULL.
This example calls the addColumn function:
// Create a new record set
rs = new WddxRecordset();
// Add a new column
rs.addColumn("NewColumn");
// Extend the record set by 3 rows
rs.addRows(3);
// Set an element in the first row
// newValue is a previously defined variable
rs.setField(0, "NewColumn", newValue);