將Excel數據快速大批量導入Access數據庫
日期:2020/9/7 發布人:潤宇軟件
瀏覽量:
在做項目時,經常遇到要將Excel中的大量數據導入到Access數據庫中string strsql = "insert into Users select MinYingLi,MaxYingLi,CiShu from [sheet1$] in ’" + ofd.FileName + "’ ’Excel 8.0;’ where MinYingLi is not null";
Database db = new Database();
db.InsertPiLiang(strsql);