找不到类型或命名空间名称“SqlBulkCopy”

时间:2013-01-23 13:36:33

标签: c# excel namespaces sqlbulkcopy

有人可以帮我解决这个错误。 这是我的代码:

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Data.OleDb;
using System.Data;
using Microsoft.ApplicationBlocks.Data;
using System.Configuration;

OleDbConnection ExcelCon = new OleDbConnection();
ExcelCon.ConnectionString = "Provider=Microsoft.Ace.OLEDB.12.0;Data Source=C:\\Users\\pc\\Documents\\ExcellTest.xlsx;Extended Properties=\"Excel 12.0;HDR=Yes\"";
SqlConnection SqlCon = new SqlConnection();
SqlCon.ConnectionString = @"workstation id = PC-PC; user id=sa;Password=sapassword; data source=pc-pc; persist security info=True; initial catalog=CleanPayrollTest2";
string sSQLTable = "TestExcell";
string sClearSQL = "DELETE FROM " + sSQLTable;
SqlCommand SqlCmd = new SqlCommand(sClearSQL, SqlCon);
SqlCon.Open();
SqlCmd.ExecuteNonQuery();
SqlCon.Close(); 
DataTable dtSchema;
dtSchema = ExcelCon.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
OleDbCommand Command = new OleDbCommand ("select * FROM [" + dtSchema.Rows[0]["TABLE_NAME"].ToString() + "]", ExcelCon);
OleDbDataAdapter da = new OleDbDataAdapter(Command);
DataSet ds = new DataSet ();
da.Fill(ds);
dataGrid1.DataSource = ds.Tables[0];
    OleDbDataReader dr = Command.ExecuteReader();
SqlBulkCopy bulkCopy = new SqlBulkCopy(sSqlConnectionString); 
bulkCopy.DestinationTableName = sSQLTable; 
while (dr.Read())
{
    bulkCopy.WriteToServer(dr);
}

错误:

- 类型或命名空间名称' bulkCopy'找不到(你错过了使用指令或汇编引用吗?)

- 类型或命名空间名称' SqlBulkCopy'找不到(你错过了使用指令或汇编引用吗?)

- 类型或命名空间名称' OleDbConn'找不到(你错过了使用指令或汇编引用吗?)

3 个答案:

答案 0 :(得分:3)

SqlBulkCopy类属于System.Data.SqlClient命名空间。将您的代码添加为它喜欢的命名空间;

using System.Data.SqlClient;

此命名空间包含在System.Data.dll

要在Visual Studio中添加引用,您可以在解决方案资源管理器中右键单击“Reference”,然后单击Add Reference

enter image description here

在搜索框中搜索System.Data,然后将最高结果System.Data dll添加到您的解决方案中。

enter image description here

查看 MSDN 中的How to: Add or Remove References By Using the Add Reference Dialog Box的详细信息。

答案 1 :(得分:1)

您的项目中是否有对System.Data.dll的引用,并且您的文件中是否有using System.Data.SqlClient声明?

答案 2 :(得分:0)

安装 NuGet 包:System.Data.SqlClient

enter image description here