asp教程.net c#取excel 合併儲存格內容
讀取excel資料,填充dataset
// 連接字串
string xlspath = server.mappath("~/www.111cn.net/somefile.xls");
string connstr = "provider=microsoft.jet.oledb.4.0;" +
"extended properties="excel 8.0;hdr=no;imex=1";" + // 指定擴充屬性為 microsoft excel 8.0 (97) 9.0 (2000) 10.0 (2002),並且第一行作為資料返回,且以文本方式讀取
"data source=" + xlspath;
string sql_f = "select * from [{0}]";
oledbconnection conn = null;
oledbdataadapter da = null;
datatable tblschema = null;
ilist<string> tblnames = null;
// 初始化串連,並開啟
conn = new oledbconnection(connstr);
conn.open();
// 擷取資料來源的表定義中繼資料
//tblschema = conn.getschema("tables");
tblschema = conn.getoledbschematable(oledbschemaguid.tables, new object[] { null, null, null, "table" });
//gridview1.datasource = tblschema;
//gridview1.databind();
// 關閉串連
//conn.close();
tblnames = new list<string>();
foreach (datarow row in tblschema.rows) {
tblnames.add((string)row["table_name"]); // 讀取表名
}
// 初始化適配器
da = new oledbdataadapter();
// 準備資料,匯入dataset
dataset ds = new dataset();
foreach (string tblname in tblnames) {
da.selectcommand = new oledbcommand(string.format(sql_f, tblname), conn);
try {
da.fill(ds, tblname);
}
catch {
// 關閉串連
if (conn.state == connectionstate.open) {
conn.close();
}
throw;
}
}
// 關閉串連
if (conn.state == connectionstate.open) {
conn.close();
}
// 對匯入dataset的每張sheet進行處理
// 這裡僅做顯示
gridview1.datasource = ds.tables[0];
gridview1.databind();
gridview2.datasource = ds.tables[1];
gridview2.databind();
// more codes
// .
這裡我們就不需要對selec 語句進行"寫入程式碼",可以根據需要動態構造from 字句的"表名"。
不僅可以,擷取表明,還可以擷取每張表內的欄位名、欄位類型等資訊:
tblschema = conn.getoledbschematable(oledbschemaguid.columns, new object[] { null, null, null, null });
在ado.net 1.x 時候只有oledb提供了getoledbschematable 方法,而sqlclient或者orcaleclient沒有對應的方法,因為對應資料庫教程已經提供了類似功能的預存程序或者系統資料表供應用程式訪問,比如對於sql server: select *
from northwind.information_schema.columns
where table_name = n'customers'
而在ado.net 2.0中每個xxxconnenction都實現了基類system.data.common.dbconnection的 getschemal
private dataset binddsfromexcel(string strfiledir, string strdataname)
{
string strconn;
strconn = "provider=microsoft.jet.oledb.4.0;data source=" + strfiledir + ";extended properties='excel 8.0;hdr=false;imex=1'";
oledbconnection oleconn = new oledbconnection(strconn);
oleconn.open();
string sql = "select * from [" + strdataname + "$]";//如果不知道名字就用sheets[1]
oledbdataadapter oledaexcel = new oledbdataadapter(sql, oleconn);
dataset oledsexcle = new dataset();
oledaexcel.fill(oledsexcle, strdataname);
oleconn.close();
return oledsexcle;
}