0
Sr No   PS_Name    PS_Name Area
  1       ABC       ABC-1
                    ABC-2
                    ABC-3
  2       ABD       ABD-1
                    ABD-2
                    ABD-3


string filePath = null;
        foreach (string inputTagName in Request.Files)
        {
            HttpPostedFileBase Infile = Request.Files[inputTagName];
            if (Infile.ContentLength > 0 && (Path.GetExtension(Infile.FileName) == ".xls" || Path.GetExtension(Infile.FileName) == ".xlsx" || Path.GetExtension(Infile.FileName) == ".xlsm"))
            {
                filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory,
                              Path.GetFileName(Infile.FileName));
                if (System.IO.File.Exists(filePath))
                {
                    System.IO.File.Delete(filePath);
                }
                Infile.SaveAs(filePath);
                //Infile.SaveAs(filePath); 
            }

            if (filePath != null)
            {
                System.Data.OleDb.OleDbConnection oconn = new System.Data.OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath.ToString() + ";Extended Properties=\"Excel 12.0 Xml;HDR=YES\";");
                oconn.Open();

                try
                {
                    if (oconn.State == System.Data.ConnectionState.Closed)
                        oconn.Open();
                }
                catch (Exception ex)
                {
                    // MessageBox.Show(ex.Message);
                }

                dynamic myTableName = oconn.GetSchema("Tables").Rows[0]["TABLE_NAME"];                    
                OleDbCommand ocmd = new OleDbCommand("select * from [" + myTableName + "]", oconn);


                OleDbDataReader odr = ocmd.ExecuteReader();
                if (odr.HasRows)
                {
                    while (odr.Read())
                    {                            
                        var c = odr[0];
                        var t = odr[1];
                        var de = odr[2];
                        //model.PS_NAME = odr[1].ToString().Trim();                            
                    }
                }
            }
        }

Excel データをインポートしてデータベース (SQL Server 2008) に保存したいと考えています。Excelでセル結合オプションを使用しています。controller.i で上記のコードを使用しています。最初の 2 つの列を取得しましたが、セル データをマージするときに問題に直面しています。

4

0 に答える 0