I have an application that periodically throws this error Error Executing Database Query.Communications link failure The last packet successfully received from the server was 878,178 milliseconds ago. The last packet sent successfully to the server was 18,954 milliseconds ago. The specific sequence of files included or processed is: ....... I think this is because the DB is on a different server. Is there any suggestions on how to fix this issue. The error occurs periodically. If the DB issue cant be fixed could I use cfcatch.cftry to keep trying until the connection doesnt fail? Maybe like this <cftry>
Problem DB query goes here
<cfcatch ...>
<cftry>
TRY DB query AGAIN?
<cfcatch ...>
TRY DB query AGAIN?
</cfcatch
</cftry>
</cfcatch>
</cftry>
... View more