我正在运行Visual Studio 2008 C#Express定位框架3.5。我正在连接到SQL Server数据集(2008 R2 Express)。我在引用正确的命名空间时遇到问题。
我使用这些指令:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.Sql;
using Microsoft.SqlServer;
我已经添加了这些DLL引用:
Microsoft.SqlServer.ConnectionInfo
Microsoft.SqlServer.ConnectionInfoExtended
Microsoft.SqlServer.Smo
System.Data
但是,我仍然收到错误,指出无法找到这些对象的命名空间:
SqlConnection Connection;
SqlCommand Command;
SqlDataAdapter Adapter;
SqlCommandBuilder CBuilder;