有人可以帮我解决这个错误。 这是我的代码:
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'找不到(你错过了使用指令或汇编引用吗?)
答案 0 :(得分:3)
SqlBulkCopy
类属于System.Data.SqlClient
命名空间。将您的代码添加为它喜欢的命名空间;
using System.Data.SqlClient;
此命名空间包含在System.Data.dll
要在Visual Studio中添加引用,您可以在解决方案资源管理器中右键单击“Reference
”,然后单击Add Reference
。
在搜索框中搜索System.Data
,然后将最高结果System.Data
dll添加到您的解决方案中。
查看 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)