SQL CE 未从网络共享加载

发布于 2024-08-21 01:45:42 字数 284 浏览 3 评论 0原文

我昨天安装了 VS 2010 RC,突然间,SQL Server CE 无法从网络共享加载文件。在使用 VS 2008 编译的项目中,如果我尝试打开位于网络共享上的 SQL CE 文件,则会收到如下错误:

内部错误:无法打开共享内存区域。

如果我尝试在 VS 2010 中创建到网络共享上的 SQL CE 文件的数据连接,我收到此错误:

SQL Server Compact 不支持在网络共享上打开数据库文件。

任何人都可以阐明吗这是怎么回事?谢谢。

I installed VS 2010 RC yesterday, and suddenly, SQL Server CE isn't loading files from a network share. In projects compiled with VS 2008, if I try to open a SQL CE file located on a network share, I get an error that reads like this:

Internal error: Cannot open the shared memory region.

If I try to create a data connection in VS 2010 to a SQL CE file on a network share, I get this error:

SQL Server Compact does not support opening database files on a network share.

Can anyone shed any light on what's going on? Thanks.

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

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

发布评论

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

评论(2

情释 2024-08-28 01:45:42

SQL Compact 是单用户进程内数据库引擎,对于基于网络的数据库,请使用免费的 SQL Server Express。

SQL Compact is a single user, in-process database engine, for network based databases, use the free SQL Server Express.

丑疤怪 2024-08-28 01:45:42

Microsoft 在 Visual Studio 内置工具中添加了人为错误“SQL Server Compact 不支持在网络共享上打开数据库文件”。您将需要使用其他工具来访问网络上的 SQL Server Compact 文件。它们将在没有该错误的情况下工作,因为它(错误消息)不是来自 OLEDB 驱动程序。请注意,“SQL Compact 是一个单用户进程内数据库引擎,适用于基于网络的数据库”与“SQL Server Compact 不支持在网络共享上打开数据库文件”完全矛盾。

以下站点提供了一种这样的工具,它可以在 Visual Studio 中运行。
http://sqlcetoolbox.codeplex.com/

Microsoft added the artificial error "SQL Server Compact does not support opening database files on a network share" to the tools built into Visual Studio. You will need to use other tools to access SQL Server Compact files on the network. They will work without that error as it (the error message) does not come from the OLEDB driver. Note that saying "SQL Compact is a single user, in-process database engine, for network based databases" completely contradicts "SQL Server Compact does not support opening database files on a network share".

One such tool is available at the following site and it works within Visual Studio.
http://sqlcetoolbox.codeplex.com/

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