I am having a problem adding info to my datasource. I have rebuilt the page and rebuilt the page using a <cfinsert> function as well. I still get the same error. All of my field names are correct and I have pages that perform the same function, just insert into the table.
My error message is giving me the error "Error Executing Database Query" however the error that the error message is nowhere in the query. The query is an insert query. Please help. I am on a deadline.
Here is the code of the query:
<cfquery datasource="MYDSN">INSERT INTO New(Name, Date, Message)
values('#Name#', '#Date#', '#Message#')
</cfquery>
The values are coming from a form this is the query on the process page.
It is telling me that the error is in line 20:
18 : <p><a href="courseadmin.cfm">Return to Course Administrator</a></p>
19 : </body>
20 : </html>
21 :
22 : </cfif>
What is going on? All of my other pages work with this same type query. My DSN Connection is fine.
Thanks
Please Help
My error message is giving me the error "Error Executing Database Query" however the error that the error message is nowhere in the query. The query is an insert query. Please help. I am on a deadline.
Here is the code of the query:
<cfquery datasource="MYDSN">INSERT INTO New(Name, Date, Message)
values('#Name#', '#Date#', '#Message#')
</cfquery>
The values are coming from a form this is the query on the process page.
It is telling me that the error is in line 20:
18 : <p><a href="courseadmin.cfm">Return to Course Administrator</a></p>
19 : </body>
20 : </html>
21 :
22 : </cfif>
What is going on? All of my other pages work with this same type query. My DSN Connection is fine.
Thanks
Please Help