在Windows服务中使用SQL Server CE
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,就我而言,这是连接字符串上的位置。
我只将数据库作为数据源,例如:
然后我选择了:
之后它开始正常工作
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:
And I chenged for:
After that it started to work normally