頁面:
後台:if (fuload.filename == "")
//匯入檔案的的格式錯誤
string fileextension = path.getextension(fuload.filename);
if (fileextension.tolower() != ".xls" && fileextension.tolower() != ".xlsx")
//判斷資料夾是否存在
//刪除指定檔案
////刪除指定資料夾下所有檔案
}//hdr=yes,這代表第一行是標題,不做為資料使用,如果用hdr=no,則表示第一行不是標題
oledbconnection conn;
if (fileextension.tolower() == ".xls")
else
conn.open(); string sql1 = "select * from [tb_customers$]"; oledbcommand cmd1 = new oledbcommand(sql1, conn); datatable c***t = new datatable();//建立乙個datatable表,用於儲存從excel表中讀取的資料 oledbdatareader ord1 = cmd1.executereader(); c***t.load(ord1);ord1.close();
conn.close();
//插入資料到sql
Excel資料匯入到SQL 2005
前段時間由於工作需要,設計了乙個基於infopath sql的查詢系統,設計完成後,突然發現查詢系統所需要的原始資料都是存放在excel文件,如果將每條記錄重新輸入到sql中,那過程將非常繁瑣,通過在網路查詢得到二種方法,但過程還是不太方便。現將以下幾種方法彙總以下 一 在程式中,用ado.net。...
sql語句將excel資料匯入到表
訪問外部資料時,opendatasource的使用範例 注意 sql2000預設是啟用opendatasource功能的。但sql2005是預設不啟用的。如果在sql2005中要使用opendatasource,則需要先開啟。開啟方式 方式一 手工修改sql配置 在sql2005的配置工具 sql ...
Excel資料匯入到Grid
方法一 string strcon provider microsoft.jet.oledb.4.0 data source strsource extended properties excel 8.0 string query select from sheet1 sheet1表示表 oledb...