Uploading an Excel sheet and importing the data into SQL Server database

前端 未结 9 1621
闹比i
闹比i 2020-11-29 01:08

I am developing this simple application to upload an Excel file (.xlsx) and import the data present in that Excel worksheet into a SQL Server Express database i

相关标签:
9条回答
  • 2020-11-29 02:02

    You can use OpenXml SDK for *.xlsx files. It works very quickly. I made simple C# IDataReader implementation for this sdk. See here. Now you can easy import excel file to sql server database using SqlBulkCopy. It uses small memory because it reads by SAX(Simple API for XML) method (OpenXmlReader)

    Example:

    private static void DataReaderBulkCopySample()
    {            
        using (var reader = new ExcelDataReader(@"test.xlsx"))
        {
            var cols = Enumerable.Range(0, reader.FieldCount).Select(i => reader.GetName(i)).ToArray();
            DataHelper.CreateTableIfNotExists(ConnectionString, TableName, cols);
    
            using (var bulkCopy = new SqlBulkCopy(ConnectionString))
            {
                // MSDN: When EnableStreaming is true, SqlBulkCopy reads from an IDataReader object using SequentialAccess, 
                // optimizing memory usage by using the IDataReader streaming capabilities
                bulkCopy.EnableStreaming = true;
    
                bulkCopy.DestinationTableName = TableName;
                foreach (var col in cols)
                    bulkCopy.ColumnMappings.Add(col, col);
    
                bulkCopy.WriteToServer(reader);
            }
        }
    }
    
    0 讨论(0)
  • 2020-11-29 02:03
        public async Task<HttpResponseMessage> PostFormDataAsync()    //async is used for defining an asynchronous method
        {
            if (!Request.Content.IsMimeMultipartContent())
            {
                throw new HttpResponseException(HttpStatusCode.UnsupportedMediaType);
            }
            var fileLocation = "";
            string root = HttpContext.Current.Server.MapPath("~/App_Data");
            MultipartFormDataStreamProvider provider = new MultipartFormDataStreamProvider(root);  //Helps in HTML file uploads to write data to File Stream
            try
            {
                // Read the form data.
            await Request.Content.ReadAsMultipartAsync(provider);
    
                // This illustrates how to get the file names.
                foreach (MultipartFileData file in provider.FileData)
                {
                    Trace.WriteLine(file.Headers.ContentDisposition.FileName); //Gets the file name
                    var filePath = file.Headers.ContentDisposition.FileName.Substring(1, file.Headers.ContentDisposition.FileName.Length - 2); //File name without the path
                    File.Copy(file.LocalFileName, file.LocalFileName + filePath); //Save a copy for reading it
                    fileLocation = file.LocalFileName + filePath; //Complete file location
                }
        HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, recordStatus);
                return response;
    }
    catch (System.Exception e)
        {
                return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, e);
        }
    }
    public void ReadFromExcel()
    {
    try
            {
                DataTable sheet1 = new DataTable();
                OleDbConnectionStringBuilder csbuilder = new OleDbConnectionStringBuilder();
                csbuilder.Provider = "Microsoft.ACE.OLEDB.12.0";
                csbuilder.DataSource = fileLocation;
                csbuilder.Add("Extended Properties", "Excel 12.0 Xml;HDR=YES");
                string selectSql = @"SELECT * FROM [Sheet1$]";
                using (OleDbConnection connection = new OleDbConnection(csbuilder.ConnectionString))
                using (OleDbDataAdapter adapter = new OleDbDataAdapter(selectSql, connection))
                {
                    connection.Open();
                    adapter.Fill(sheet1);
                }
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }          
    }
    
    0 讨论(0)
  • 2020-11-29 02:04
     protected void btnUpload_Click(object sender, EventArgs e)
        {
            divStatusMsg.Style.Add("display", "none");
            divStatusMsg.Attributes.Add("class", "alert alert-danger alert-dismissable");
            divStatusMsg.InnerText = "";
            ViewState["Fuletypeidlist"] = "0";
            grdExcel.DataSource = null;
            grdExcel.DataBind();
    
            if (Page.IsValid)
            {
                bool logval = true;
                if (logval == true)
                {
                    String img_1 = fuUploadExcelName.PostedFile.FileName;
                    String img_2 = System.IO.Path.GetFileName(img_1);
                    string extn = System.IO.Path.GetExtension(img_1);
    
                    string frstfilenamepart = "";
                    frstfilenamepart = "DateExcel" + DateTime.Now.ToString("ddMMyyyyhhmmss"); ;
                    UploadExcelName.Value = frstfilenamepart + extn;
                    fuUploadExcelName.SaveAs(Server.MapPath("~/Emp/DateExcel/") + "/" + UploadExcelName.Value);
                    string PathName = Server.MapPath("~/Emp/DateExcel/") + "\\" + UploadExcelName.Value;
                    GetExcelSheetForEmp(PathName, UploadExcelName.Value);
                   
                    if ((grdExcel.HeaderRow.Cells[0].Text.ToString() == "CODE") && grdExcel.HeaderRow.Cells[1].Text.ToString() == "SAL")
                    {
                        GetExcelSheetForEmployeeCode(PathName);
                    }
                    else
                    {
                        divStatusMsg.Style.Add("display", "");
                        divStatusMsg.Attributes.Add("class", "alert alert-danger alert-dismissable");
                        divStatusMsg.InnerText = "ERROR !!...Please Upload Excel Sheet in header Defined Format ";
                    }
    
                }
            }
    
    
        }
    
        private void GetExcelSheetForEmployeeCode(string filename)
        {
            int count = 0;
            int selectedcheckbox = 0;
            string empcodeexcel = "";
            string empcodegrid = "";
            string excelFile = "Employee/DateExcel" + filename;
            OleDbConnection objConn = null;
            System.Data.DataTable dt = null;
            try
            {
                DataSet ds = new DataSet();
                String connString = "Provider=Microsoft.ACE.OLEDB.12.0;Persist Security Info=True;Extended Properties=Excel 12.0 Xml;Data Source=" + filename;
                // Create connection. 
                objConn = new OleDbConnection(connString);
                // Opens connection with the database. 
                if (objConn.State == ConnectionState.Closed)
                {
                    objConn.Open();
                }
                // Get the data table containing the schema guid, and also sheet names. 
                dt = objConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
                if (dt == null)
                {
                    return;
                }
                String[] excelSheets = new String[dt.Rows.Count];
                int i = 0;
                // Add the sheet name to the string array. 
                // And respective data will be put into dataset table 
                foreach (DataRow row in dt.Rows)
                {
                    if (i == 0)
                    {
                        excelSheets[i] = row["TABLE_NAME"].ToString();
                        OleDbCommand cmd = new OleDbCommand("SELECT DISTINCT * FROM [" + excelSheets[i] + "]", objConn);
                        OleDbDataAdapter oleda = new OleDbDataAdapter();
                        oleda.SelectCommand = cmd;
                        oleda.Fill(ds, "TABLE");
                        if (ds.Tables[0].ToString() != null)
                        {
                            for (int j = 0; j < ds.Tables[0].Rows.Count; j++)
                            {
                                for (int k = 0; k < GrdEmplist.Rows.Count; k++)
                                {
                                    empcodeexcel = ds.Tables[0].Rows[j][0].ToString();
                                    date.Value = ds.Tables[0].Rows[j][1].ToString();
    
                                    Label lbl_EmpCode = (Label)GrdEmplist.Rows[k].FindControl("lblGrdCode");
                                    empcodegrid = lbl_Code.Text;
                                    CheckBox chk = (CheckBox)GrdEmplist.Rows[k].FindControl("chkSingle");
                                    TextBox txt_Sal = (TextBox)GrdEmplist.Rows[k].FindControl("txtSal");
    
    
                                    if ((empcodegrid == empcodeexcel) && (date.Value != ""))
                                    {
                                        chk.Checked = true;
                                        txt_Sal.Text = date.Value;
                                        selectedcheckbox = selectedcheckbox + 1;
                                        lblSelectedRecord.InnerText = selectedcheckbox.ToString();
                                        count++;
                                    }
                                    if (chk.Checked == true)
                                    {
    
                                    }
                                }
    
                            }
    
                        }
                    }
                    i++;
                }
    
            }
            catch (Exception ex)
            {
                ShowMessage(ex.Message.ToString(), 0);
            }
            finally
            {
                // Clean up. 
                if (objConn != null)
                {
                    objConn.Close();
                    objConn.Dispose();
                }
                if (dt != null)
                {
                    dt.Dispose();
                }
            }
        }
    
        private void GetExcelSheetForEmp(string PathName, string UploadExcelName)
        {
            string excelFile = "DateExcel/" + PathName;
            OleDbConnection objConn = null;
            System.Data.DataTable dt = null;
            try
            {
    
                DataSet dss = new DataSet();
                String connString = "Provider=Microsoft.ACE.OLEDB.12.0;Persist Security Info=True;Extended Properties=Excel 12.0 Xml;Data Source=" + PathName;
                objConn = new OleDbConnection(connString);
                objConn.Open();
                dt = objConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
                if (dt == null)
                {
                    return;
                }
                String[] excelSheets = new String[dt.Rows.Count];
                int i = 0;
                foreach (DataRow row in dt.Rows)
                {
                    if (i == 0)
                    {
                        excelSheets[i] = row["TABLE_NAME"].ToString();
                        OleDbCommand cmd = new OleDbCommand("SELECT * FROM [" + excelSheets[i] + "]", objConn);
                        OleDbDataAdapter oleda = new OleDbDataAdapter();
                        oleda.SelectCommand = cmd;
                        oleda.Fill(dss, "TABLE");
    
                    }
                    i++;
                }
                grdExcel.DataSource = dss.Tables[0].DefaultView;
                grdExcel.DataBind();
                lblTotalRec.InnerText = Convert.ToString(grdExcel.Rows.Count);
    
            }
    
            catch (Exception ex)
            {
                ViewState["Fuletypeidlist"] = "0";
                grdExcel.DataSource = null;
                grdExcel.DataBind();
            }
            finally
            {
                if (objConn != null)
                {
                    objConn.Close();
                    objConn.Dispose();
                }
                if (dt != null)
                {
                    dt.Dispose();
                }
            }
    
        }
    
    0 讨论(0)
提交回复
热议问题