在 ColdFusion 中捕获错误数据库错误

发布于 2025-01-05 03:43:46 字数 132 浏览 0 评论 0原文

我有一个与 SQL Server 数据库通信的 ColdFusion cfm 文件。现在,如果数据库连接出现问题,它会显示 ColdFusion 生成的错误页面。有没有办法可以捕获错误并显示类似“数据库服务器暂时关闭,请稍后再回来”之类的消息? 特德

I have a ColdFusion cfm file that communicates with a sql server database. Right now if something goes wrong with the database connection, it brings up an error page generated by ColdFusion. Is there a way I can catch the errors and display a message like, "Database server temporarily down, please come back later"?
Ted

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一片旧的回忆 2025-01-12 03:43:46

您可以对单个查询使用 try/catch - 这将是最精细的方法。

<cftry>

  <cfquery datasource="myDSN">BROKEN SQL</cfquery>

  <cfcatch type="database">
    <h1>Database Offline!</h1>
    <p>Sorry, the database threw an error: #cfcatch.queryError#.  Try again later.</p><cfabort>
  </cfcatch>

</cftry>

您还可以使用 cferror 标记进行全局异常处理(将其放入 Application.cfm 中):

<cferror 
  type="exception" 
  exception="database" 
  template="myFriendlyDatabaseErrorTemplate.cfm">

您还可以在 Application.cfc 中使用 onError 方法,该方法也将(与 cferror 标记一样)捕获请求期间发生的所有错误:

<cffunction name="onError" returnType="void">
    <cfargument name="Exception" required=true/>
    <cfargument name="EventName" type="String" required=true/>
    <cfif arguments.Exception IS "database">
      <cfinclude template="myFriendlyDatabaseErrorTemplate.cfm">
    </cfif>
</cffunction>

You can use try/catch for an individual query - this will be the most granular approach.

<cftry>

  <cfquery datasource="myDSN">BROKEN SQL</cfquery>

  <cfcatch type="database">
    <h1>Database Offline!</h1>
    <p>Sorry, the database threw an error: #cfcatch.queryError#.  Try again later.</p><cfabort>
  </cfcatch>

</cftry>

You can also use the cferror tag for global exception handling (put this in Application.cfm):

<cferror 
  type="exception" 
  exception="database" 
  template="myFriendlyDatabaseErrorTemplate.cfm">

You can also use onError method within Application.cfc, which will also (like the cferror tag) catch all errors that occur during the request:

<cffunction name="onError" returnType="void">
    <cfargument name="Exception" required=true/>
    <cfargument name="EventName" type="String" required=true/>
    <cfif arguments.Exception IS "database">
      <cfinclude template="myFriendlyDatabaseErrorTemplate.cfm">
    </cfif>
</cffunction>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文