Query not displaying and errors
We have been using CF for a long time. Yesterday we had a power cut and after a restart the following is happening (just a test page to identify issues):
<cfquery datasource="#mydb#">
UPDATE iantest
set
test = 55
where id = 1
</cfquery>
This Works - updates the DB correctly but displays the error message: The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.
Null Pointers are another name for undefined values.
<cfquery name="salesexecs" datasource="#mydb#">
SELECT *
FROM SalesExec
ORDER BY initials, SalesExec
</cfquery>
This one doesn’t work at all
Help!
