用代碼將Excel資料匯入Sql Server

來源:互聯網
上載者:User

標籤:style   os   io   strong   ar   檔案   資料   art   cti   

這裡直接用小例子說明。

1、開啟VS2010—>檔案—>建立—>網站,選擇ASP.NET空網站並設定存放路徑以建立空網站。(我這裡路徑設定為D:\excelEduceToSql)

2、建立資料庫test並在test資料庫中建立my_test表(我這裡在excelEduceToSql檔案夾中建立SQL檔案夾並將資料庫儲存在裡面)。

 (表的欄位如下:)

   tid(int)

   tname(nvarchar(50))

   tt(nvarchar(50))

3、建立Excel表(我這裡的Excel表的檔案名稱為test.xls)。要注意的是:Excel中第一行是定義的是列名,從第2行開始才是資料,通過Sql語句從Excel中讀取到的資料也是   從第二行開始的。

 (Excel表設計如下:)

  編號  姓名  備忘

  1  a  aa

  2  b  bb

  3  c  cc

4、在第1步的基礎上右鍵—>添加新項,選擇Web表單並命名(我這裡按預設的名稱Default.aspx)。在設計頁面中雙擊或拉取左邊工具箱中的button控制項並修改右邊屬性   中的Text屬性為“匯入”,雙擊匯入按鈕進入Default.aspx.cs檔案的代碼編寫。

5、代碼編寫如下:

  using System;
  using System.Collections.Generic;
  using System.Linq;
  using System.Web;
  using System.Web.UI;
  using System.Web.UI.WebControls;
  using System.Data.SqlClient;

  public partial class test : System.Web.UI.Page
  {
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    public SqlConnection con()
    {
      return new SqlConnection("server=.;uid=sa; pwd=sa;database=test");這裡需要注意的是server、uid、pwd、database分別為你的資料庫。
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
      SqlConnection mycon = con();
      string sqlstr="insert into my_test select * from OPENROWSET(‘MICROSOFT.JET.OLEDB.4.0‘,‘Excel 8.0;HDR=YES;DATABASE=D:\\excelEduceToSql\\Excel\\test.xls‘,sheet1$)";這裡需要注意的是Excel檔案的路徑需要用雙斜杠來分隔,否則會出錯。
      SqlCommand cmd = new SqlCommand(sqlstr, mycon);
      mycon.Open();
      cmd.ExecuteNonQuery();
      mycon.Close();
    }
  }

6、在Sql Server中點擊建立查詢,輸入如下代碼並點擊執行:

  exec sp_configure ‘show advanced options‘,1
  reconfigure
  exec sp_configure ‘Ad Hoc Distributed Queries‘,1
  reconfigure
  go

7、Ctrl+F5運行即可。這裡需要注意的是運行是不可開啟Excel檔案,否則會報錯。

  若有錯誤請指出或直接聯絡本人QQ:953276191

   

用代碼將Excel資料匯入Sql Server

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.