Excel 匯入資料庫的方法

2021-04-21 08:21:12 字數 1240 閱讀 5618

using system;

using system.data;

using system.configuration;

using system.collections;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.webcontrols;

using system.web.ui.htmlcontrols;

using system.data.oracleclient;

using system.io;

using system.data.oledb;

protected static string geterrmsg = "";

excell匯入資料庫的基本語句

string filepath =@"c:/料號對照表.xls";

string strexlcon = "provider=microsoft.jet.oledb.4.0;data source="+ filepath +";extended properties = excel 8.0";

dataset ds = new dataset();

oledbconnection xlscon = new oledbconnection(strexlcon);

oledbdataadapter adpxls = new oledbdataadapter("select segement,dwsc1,gbcode,gwdesc from [sheet1$]", xlscon);

adpxls.fill(ds,"[sheet1$]");

xlscon.open();

datatable dt = new datatable();

dt = ds.tables[0];

if (ds.tables[0].rows.count != 0)

reader.close();

com.dispose();

if (j==0)

da.executenonquery();}}

con.close();

xlscon.close();

}catch (exception ex)

finally

if (geterrmsg == "" || geterrmsg == null)

else

}

excel匯入資料庫

在你的 中增加一列,利用excel的公式自動生成sql語句 concatenate 函式 具體方法如下 1 增加一列 假設是d列 2 在第一行的d列,就是d1中輸入公式 concatenate insert into table col1,col2,col3 values a1,b1,c1,3 此時...

Excel匯入資料庫

一 在excel中 新建一列,如把列名定為ab,下面放你的資料,比如1,2,3 二 開啟sql企業管理器,右擊你所需要匯入的資料庫,選擇匯入資料,下一步,資料來源選擇microsoft eccel 97 2000,選擇excel檔案繼續下一步,往下按,選擇sheet1 或者2,3 看你把資料放在那一...

excel匯入資料庫

日常工作中,感覺一些基礎知識需要做下筆記,可能是剛畢業的緣故吧,還保持著做筆記的習慣,但根據以往經驗,紙質筆記最多保持一年,過後想找已是難過登天。電子版筆記感覺很不錯,尤其是發布到網路中。筆記內容是本人遇到的感覺可能會有些用的東西,很是瑣碎,記錄在中,僅供學習參考。1 將資料庫中的內容顯示到乙個窗體...