找不到 SQL Server Compact 3.5 命名空间

发布于 2024-12-11 20:12:01 字数 308 浏览 0 评论 0原文

我想使用 SQL Server Compact 3.5,但智能感知未显示 System.Data.SqlServerCe 命名空间。它表示“System.Data”命名空间中不存在类型或命名空间“SqlServerCe” (您是否缺少任何程序集引用?)

需要引用哪个程序集?

或者我是否需要使用任何其他命名空间才能使用 SQL Server Compact 3.5?

我安装了 Sql Server 2005 Standard 和 Express,以及 VC# 2010。

请提供一些使用 SQL Server CE 3.5 的参考链接。

I want to use SQL server compact 3.5, but intellisense is not showing System.Data.SqlServerCe namespace.. it says type or namespace 'SqlServerCe' does not exist in 'System.Data' namespace (are you missing any Assembly reference?)

Which Assembly needs to be referenced?

or do I need to use any other namespace to use SQL Server Compact 3.5?

I have Sql Server 2005 Standard and Express installed, and VC# 2010.

Please provide some reference link to work with SQL Server CE 3.5..

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

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

发布评论

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

评论(3

睡美人的小仙女 2024-12-18 20:12:01

添加引用中,如果您没有看到屏幕截图中的引用,请浏览到C:\Program Files (x86)\Microsoft SQL Server Compact Edition\v3.5\Desktop< /代码> 文件夹

In Add Reference, if you do not see the reference as in the screenshot, browse to the C:\Program Files (x86)\Microsoft SQL Server Compact Edition\v3.5\Desktop folder

任性一次 2024-12-18 20:12:01

SQL Server Compact Edition (CE) 库位于 System.Data.SqlServerCe 命名空间中,该命名空间位于 System.Data.SqlServerCe 程序集中。默认情况下不引用此程序集 - 您需要显式添加对它的引用才能使用它!

在此处输入图像描述

一旦您完成此操作,您还需要

using System.Data.SqlServerCe;

在使用 SQL Server 的 C# 文件顶部 添加一个行政长官。

请查看 Erik EJ 的博客,了解精彩内容有关 SQL Server CE 的所有内容的参考

The SQL Server Compact Edition (CE) libraries live in the System.Data.SqlServerCe namespace, which is in the System.Data.SqlServerCe assembly. This assembly is not referenced by default - you need to explicitly add a reference to it before you can use it!

enter image description here

Once you have that in place, you will also need a

using System.Data.SqlServerCe;

at the top of your C# file using SQL Server CE.

Check out Erik EJ's blog for a great reference for all things SQL Server CE

刘备忘录 2024-12-18 20:12:01

您需要添加对“System.Data.SqlServerCe”程序集的引用。您可以从此处下载并安装 CE。

You need to add a reference to the 'System.Data.SqlServerCe' assembly. You can download and install CE from here.

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