query.addRow()
Adds a specified number of empty rows to a query.
query.addRow( numberOrData=any )
Returns: Query
Examples
myQuery = queryNew( "id,name");
addedRows = myQuery.addRow( 3 ); // will return 3
myQuery.addRow([17,'added via array notation']);
anotherRow = myQuery.addRow(); // will return 4
myQuery.addRow({
id:18,
name:'added via struct notation'
});
dump(myQuery);