Probably because of how queries are store. They are stored in structure with
each key name linking to a field name in the database. In each key is a one
dimensional array containing all the records for each field. So if you
wanted to delete row number 10 you would do something like this:

<cfloop collection="#queryname#" item="field">
        <cfset temp=ArrayDeleteAt(queryname.field, 10)>
</cfloop>

I've never tried this, but it would make logical sense considering how
queries are stored.

Rick


-----Original Message-----
From: Phoeun Pha [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 04, 2000 12:20 PM
To: CF-Talk
Subject: Query functions problem


There's QueryAddrow, Query SetCell, IsQuery....etc.


WHY ISN'T THERE A DELETEQUERYROW?!!!!!!

thanx
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to