MVC 应用程序部署; System.Data.SqlClient.SqlException:找不到存储过程“ELMAH_GetErrorsXml”

发布于 2024-10-24 07:21:39 字数 366 浏览 1 评论 0原文

我已经部署了 MVC 应用程序,但错误处理不起作用。 我使用 SQLite 数据库,当我尝试导航到 Elmah 中的错误消息时,我收到此异常;

System.Data.SqlClient.SqlException:找不到存储过程“ELMAH_GetErrorsXml”。

当然,我需要部署 SQLite 数据库,在我的 web.config 中定义为:

添加名称=“ELMAH.SQLite”connectionString=“数据源=|DataDirectory|errors.s3db”/>

我认为我在部署应用程序时没有部署 SQLite 数据库。然而我无法在本地文件系统上找到errors.s3db,所以我不确定如何在我的实时环境中设置它。

I have deployed my MVC app but the error handling does not work.
I use a SQLite database and when I try to navigate to the error messages in Elmah i get this exception;

System.Data.SqlClient.SqlException: Could not find stored procedure 'ELMAH_GetErrorsXml'.

Of course I need to deploy the SQLite database, defined in my web.config as;

add name="ELMAH.SQLite" connectionString="Data Source=|DataDirectory|errors.s3db" />

I am thinking that I did not deploy a SQLite database when I deployed my application. Yet I cannot locate the errors.s3db on my local file system, so I am not sure how I set one up on my live environment.

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

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

发布评论

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

评论(1

热血少△年 2024-10-31 07:21:39

您需要运行 SQL 脚本来创建 ELMAH 对象。它可以在下载的“db”文件夹中找到 (http://code.google .com/p/elmah/downloads/list

You'll need to run the SQL script to create the ELMAH objects. It can be found in the 'db' folder of the download ( http://code.google.com/p/elmah/downloads/list )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文