August 2003
Intermediate to advanced
1140 pages
68h 45m
English
QueryAddRow
QueryAddRow(query [, number])Adds number empty rows to
query. If
number is omitted, a single blank row is
added. Here’s an example that creates a blank query
and adds three empty rows to it:
<cfset Products = QueryNew("ProductName, Color, Price, Qty")>
<cfset NewRows = QueryAddRow(Products, 3)>
<cfoutput>
There are now #NewRows# rows in the query named Products.
</cfoutput>