QuerySetRow
Adds or updates a row in a query based on the provided row data and position.
Method Signature
Arguments
Argument
Type
Required
Description
Default
query
query
true
The query object to which the row should be added or updated.
rowNumber
integer
false
Optional position of the row to update; if omitted or zero, a new row will be added.
0
rowData
any
true
A struct or array containing data for the row.
Examples
Builds a simple query using queryNew and querySetRow
Sets third row of query overwriting news entry
Builds a simple query using queryNew and someQuery.setRow member syntax
Sets third row of query overwriting news entry
Additional Examples
Related
Last updated
Was this helpful?