分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

EXCEL转换到TABLE中

//把EXCEL转换到TABLE中         public static DataTable ExcelToDataTable(string excelPath, string strSheetName)         {             string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + excelPath + ";"                                              + "Extended Properties=Excel 5.0;";             string strExcel = string.Format("select * from [{0}]", strSheetName);               DataSet ds = new DataSet();             using (OleDbConnection conn = new OleD...

.NET, Access 暂无评论 阅读(2,485)