将文件上载到SQL Server

时间:2014-11-06 11:48:22

标签: c# asp.net sql-server

重写问题...下面的代码将数据插入到SQL Server数据库中,然后插入到正确的表中,数据未正确插入...这里是代码

if (FileUpload1.HasFile)
{
    string path = string.Concat((Server.MapPath("~/temp/" + FileUpload1.FileName)));
    FileUpload1.PostedFile.SaveAs(path);

    OleDbConnection OleDbcon = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + ";Extended Properties=\"Excel 8.0;HDR=Yes;IMEX=1\";");
    OleDbCommand cmd = new OleDbCommand("select * from [Sheet1$]", OleDbcon);
    OleDbDataAdapter objAdapter1 = new OleDbDataAdapter(cmd);

    OleDbcon.Open();

    DbDataReader dr = cmd.ExecuteReader();
    string con_str = @"Data Source=ENERGYSQL\ENERGY;Initial Catalog=ProjectHandler;Persist Security Info=True;User ID=aconyon;Password=birchall";

    SqlBulkCopy bulkInsert = new SqlBulkCopy(con_str);
    bulkInsert.DestinationTableName = "StockTable";
    bulkInsert.WriteToServer(dr);

    OleDbcon.Close();

    Array.ForEach(Directory.GetFiles((Server.MapPath("~/temp/"))), File.Delete);
    //Label1.ForeColor = Color.Green;
    Label1.Text = "Successfully inserted";
}
else
{
    //Label1.ForeColor = ConsoleColor.Red;
    Label1.Text = "please select ther File";
}

这段代码的作用是选择最右边的列,在我的示例数量中,并将此插入数据库,忽略所有其他行(A和B)我是否需要更改OleDbCommand以选择某些行。 A(ItemName),B(日期),C(数量)

2 个答案:

答案 0 :(得分:3)

使用此代码。

string excelConnectionString = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data
Source={0};Extended Properties='Excel 8.0;HRD=YES;IMEX=1'", 
Server.MapPath(@"~\DownloadedExcelFilesOp4\myfile" + fileExt));// + "\\" +
FileUploadControl.PostedFile.FileName.ToString());
using (OleDbConnection connection = new OleDbConnection(excelConnectionString))
{
   OleDbCommand command = new OleDbCommand(("Select [Demo1] ,[Demo2]  FROM [Sheet1$]"), 
   connection);
   connection.Open();
   using (DbDataReader dr = command.ExecuteReader())
   {
   }
}

答案 1 :(得分:-3)

您可以使用下面的查询来获取任何特定列的值。

OleDbCommand command = new OleDbCommand(("Select [Col1] ,[Col2]  FROM [Sheet1$]"), 
   connection);
相关问题