在Windows服务中使用SQL Server CE

发布于 2024-09-17 01:00:36 字数 318 浏览 2 评论 0原文

我正在尝试在 Windows 2008 上的 Windows 服务中使用 SQL Server CE。

每当我尝试打开与 SQL Server CE 数据库的连接时,都会收到错误

找不到数据库文件

我很惊讶,因为数据库文件存在,该部分没有问题......有什么想法吗?

SQL Server Compact 打开数据库时遇到问题。
[ 内部错误号 = 25039,内部错误字符串 = 不允许访问数据库文件。 [,,,文件名,,]]

I am trying to use SQL Server CE in windows service on Windows 2008.

Whenever I try to open connection to SQL Server CE database I get an error

Database File not found

I am amazed because the database file is present there no issue with that part... any ideas?

SQL Server Compact encountered problems when opening the database.
[ Internal Error Number = 25039, Internal Error String = Access to the database file is not allowed. [,,,File name,,] ]

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

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

发布评论

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

评论(1

饭团 2024-09-24 01:00:36

我遇到了同样的问题,就我而言,这是连接字符串上的位置。

我只将数据库作为数据源,例如:

Data Source=Panoptes.sdf;

然后我选择了:

Data Source=|DataDirectory|\Panoptes.sdf;

之后它开始正常工作

I had the same problem and in my case it was the location on the connection string.

I was putting only the database as data Source, like:

Data Source=Panoptes.sdf;

And I chenged for:

Data Source=|DataDirectory|\Panoptes.sdf;

After that it started to work normally

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