Need help please,
I'm running a 3 page process where on the 1st page I gather info for a DB file. One of the things I do is add a #1 to a field as a pointer. The 2nd page, I "INSERT" the info to the DB. On the 3rd page I do a query to print certain info from the DB. The query is:
<cfquery DATASOURCE="MNET" NAME="nds">
SELECT * FROM NDS WHERE MNETDone = '1'
</cfquery>
My problem is that the database prints out the info that was previously entered, and not the current info, so I'm alway going to be short by 1 report. The last step in the printing process takes the pointer and changes it from a 1 to a 2. Am I missing a step to print the current info or is it that the process can't keep up with the writting to the DB?
Brian
I'm running a 3 page process where on the 1st page I gather info for a DB file. One of the things I do is add a #1 to a field as a pointer. The 2nd page, I "INSERT" the info to the DB. On the 3rd page I do a query to print certain info from the DB. The query is:
<cfquery DATASOURCE="MNET" NAME="nds">
SELECT * FROM NDS WHERE MNETDone = '1'
</cfquery>
My problem is that the database prints out the info that was previously entered, and not the current info, so I'm alway going to be short by 1 report. The last step in the printing process takes the pointer and changes it from a 1 to a 2. Am I missing a step to print the current info or is it that the process can't keep up with the writting to the DB?
Brian