0
我有這個Excel表每天需要修改我試圖將其導出到Windows應用程序,並希望有它的數據庫,但我不明白how to create a table with this format in sql and how can i query on the table.
我希望它將其顯示爲儀表板。任何關於此的信息都會有幫助。excel表每天/每週/每月報告在一個Windows應用程序格式
這是我的代碼:
private static Excel.Workbook MyBook = null;
private static Excel.Application MyApp = null;
private static Excel.Worksheet MySheet = null;
MyApp = new Excel.Application();
MyApp.Visible = false;
MyBook = MyApp.Workbooks.Open(DB_PATH);
MySheet = (Excel.Worksheet)MyBook.Sheets[1]; // Explicit cast is not required here
lastRow = MySheet.Cells.SpecialCells(Excel.XlCellType.xlCellTypeLastCell).Row;
。
這是一個非常廣泛的問題...我建議你看看一些關於構建數據庫,導出數據到數據庫,讀取數據庫和有意識的SQL語法等的教程 –