C#使用System.Data.OleDb问题
我在 IDE SharpDevelop 上尝试过,而不是在 Visual Studio 上尝试过。 我正在使用这样的命名空间:
using System.Data.OleDb;
但它向我显示以下错误:
'Data' does not exist in the namespace 'System'(are you missing an assembly reference?)(CS0234)
I have tried this on IDE SharpDevelop not on visual studio.
I am using the namespace like this:
using System.Data.OleDb;
But it is showing me following error:
'Data' does not exist in the namespace 'System'(are you missing an assembly reference?)(CS0234)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听取编译器的意见:您可能缺少对项目中的 System.Data 程序集的引用。您需要使用
Project
菜单中的Add Reference...
对话框添加该引用。Listen to the compiler: you're probably missing a reference to the
System.Data
assembly in your project. You need to add that reference using theAdd Reference...
dialog from theProject
menu.添加引用,然后搜索
System.Data
并使用添加到您的程序中Add Reference then search
System.Data
and add to your program using