TableAddRow
The TableAddRow function is only supported in Studio. It allows you to
add or append a row to a table. The row must have be previously created
using the \'TableNewRow\' function.
Prototype
TableAddRow(Table; Row)
Argument
Table Table By value
Argument that contains the table.
Row Table Row By value
Argument that contains the row to be added.
Returns
Boolean
Exception
Undefined
Undefined is returned if one of the arguments is invalid or the row has a columns schema that does not match with the table schema.
Example
TableAddRow($$myTable; $R)
This will add the row referenced by the variable $R to the table referenced by the variable $$myTable.