CFLoop Error For Missing Entries
please disregard this post. I have made a clearer example of my problem here: Error with CFLoop When Entries Are Missing I am running the CFLoop code below. <cfset data = queryNew("sid,firstname,lastname,age","integer,varchar,varchar,integer")> <cfloop index="x" from="1" to="50"> <cfset queryAddRow(data)> <cfset querySetCell(data,"sid",x)> <cfset querySetCell(data,"firstname","#first[x]#")> <cfset querySetCell(data,"lastname","#last[x]#")> <cfset querySetCell(data,"age","#studentage[x]#")> </cfloop> <cfoutput query="data"> #sid# - #firstnamet# #lastname# - #age#<br /> </cfoutput> The variables