如何从 CFC 文件获取异常详细信息
我在 CFC 文件中有一个函数,将从 .cfm 文件中调用该函数,如下所示
<cffunction name="cftest" access="public" returntype="query" output="true" hint="Function returns Records">
<cfquery name="qryTest" datasource="DBTest">
select * from emp_tab;
</cfquery>
<cfreturn selectRecordsResultSet />
</cffunction>
如何使用 cftry 处理 DB 异常?因为这是返回查询,是否可以捕获数据库异常并将详细信息从调用它的地方传递到另一个页面?
谢谢
I have a Function in CFC file, which will be called from .cfm file like below
<cffunction name="cftest" access="public" returntype="query" output="true" hint="Function returns Records">
<cfquery name="qryTest" datasource="DBTest">
select * from emp_tab;
</cfquery>
<cfreturn selectRecordsResultSet />
</cffunction>
How can I handle DB Exception using cftry? as this is returning Query, Is it possible to catch the DB Exception and pass the Details to the other page from where it is called?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我通常实现的示例:
如果您只想处理数据库错误,请将类型更改为数据库。
使用这三种方法执行错误处理和报告:
请注意,对于 returntype="void" 的方法,我使用 cfset 而不是 cfreturn:
因此在代码中我可以执行以下操作(cfscript):
Here is an example of my usual implementation of this:
If you want to handle only database errors, change type to the database.
Errors handling and reporting performed using these three methods:
Please note that for methods with returntype="void" I use cfset instead of cfreturn:
So in code I can do the following (cfscript):