I have a query that updates the record in the DB with the new information the user submits. What I want to do is allow the users to update all of their records at once, click submit, and then have the correct records update in the DB. Is there a way to di this? I tried using CFLOOP, but it was unsuccessful.
Here is my query, the ID record is the unique identifier for each record.
<CFQUERY NAME="updatedb" DATASOURCE="K">
UPDATE Newtable
SET absorbed='#Absorbed#', NameN='#NameN#', Name2='#Name2#'
Where ID=#ID#
</CFQUERY>
Thanks
Here is my query, the ID record is the unique identifier for each record.
<CFQUERY NAME="updatedb" DATASOURCE="K">
UPDATE Newtable
SET absorbed='#Absorbed#', NameN='#NameN#', Name2='#Name2#'
Where ID=#ID#
</CFQUERY>
Thanks