C#使用oledb串連excel執行Insert Into語句出現“必須使用一個可更新的查詢”的解決辦法的範例程式碼

來源:互聯網
上載者:User

我發生錯誤時的環境:Windows 7,Framework 4、0,Microsoft Office 2007,VS2010,c# WinForm;

部分代碼:


                    string strConn = "Provider=Microsoft.Ace.OleDb.12.0;Persist Security Info=False;                    " + "data source=" + @excelPath + ";Extended Properties='Excel 12.0; HDR=yes; IMEX=2'";                    OleDbConnection conn = new OleDbConnection();                    conn.ConnectionString = strConn;                    try                    {                        OleDbCommand cmd = null;                        try                        {                            cmd = new OleDbCommand("Insert Into [Sheet1$] Values('abc', 'bac', '0', '123456', 'test','測試','aa')", conn);//(A,B,C,D,E,F,G)                             cmd.ExecuteNonQuery();                        }                        catch (System.Exception ex)                        {                            textBox1.Text += ("插入資料失敗:" + ex.Message);                            textBox1.Text += ("\r\n");                        }


遇到此錯誤的時候第一想到的就是沒有許可權,但使用管理員身份運行依然是相同的錯誤!

又通過以下代碼添加許可權,還是一樣的錯誤:

FileInfo fi = new FileInfo(excelPath);System.Security.AccessControl.FileSecurity fileSecurity = fi.GetAccessControl();fileSecurity.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));fileSecurity.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));fi.SetAccessControl(fileSecurity);DirectoryInfo di = new DirectoryInfo(Path.GetDirectoryName(excelPath));System.Security.AccessControl.DirectorySecurity dirSecurity = di.GetAccessControl();dirSecurity.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));dirSecurity.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));di.SetAccessControl(dirSecurity);

知識補習,這裡的連接字串多了:Extended Properties='Excel 12.0; HDR=yes; IMEX=2'


參數HDR的值:

HDR=Yes,這代表第一行是標題,不做為資料使用 ,如果用HDR=NO,則表示第一行不是標題,做為資料來使用。系統預設的是YES
參數Excel 8.0 對於Excel 97以上到2003版本都用Excel 8.0,2007或2010的都用Extended Properties=Excel 12.0

IMEX ( IMport EXport mode )設定
  IMEX 有三種模式:
  0 is Export mode
  1 is Import mode
  2 is Linked mode (full update capabilities)
  我這裡特別要說明的就是 IMEX 參數了,因為不同的模式代表著不同的讀寫行為:
  當 IMEX=0 時為“匯出模式”,這個模式開啟的 Excel 檔案只能用來做“寫入”用途。
  當 IMEX=1 時為“匯入模式”,這個模式開啟的 Excel 檔案只能用來做“讀取”用途。
  當 IMEX=2 時為“連結模式”,這個模式開啟的 Excel 檔案可同時支援“讀取”與“寫入”用途。
意義如下:
0 ---輸出模式;
1---輸入模式;
2----連結模式(完全更新能力)

按照以上描述,上面的連接字串應該是可以讀取,外掛程式記錄的

但是事實並非如此,當執行Insert Into語句時卻出現異常:“操作必須使用一個可更新的查詢”!

注意是c# WinForm程式,不是Web應用程式;如果是Web應用程式,那需要添加IIS_IUSRS或IIS_Service使用者的目錄存取權限;

還是去搜尋看看別人是怎麼解決的吧,但是看遍了別人解決問題的方法,到我這裡就是測試不通過!

猜測還是IMEX值的問題,改為1不行,那就改為0,尼馬,奇蹟出現了!

接著又測試將IMEX設定為4或10,結果都沒問題,唯獨1和2不行,真是坑爹的節奏啊。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.