For some strange reason this simple INSERT statement in my CFQUERY tag just halts the page load. I have plenty of SELECT statements around my site, but the results on screen output the "Before SQL" dump and then end.
It must be something simple that I am missing. I have even used the hard-coded values below to test the statement before adding the dynamic CFPQUERYPARAM from the submitted FORM values. The datasource is declare for application in application.cfc
Thank you for the assist.
<cfdump var="Before SQL" abort="false" />
<cfquery name="insertResponses" result="insertResults">
INSERT INTO StudentResponseTable
VALUES
(102, 1, 39, 1)
</cfquery>
<cfdump var="After SQL" abort="false" />
<cfdump var="insertResults" abort="true" />