c 中將資料庫資料匯出到EXCEL中

2021-06-16 01:06:22 字數 748 閱讀 8990

我分以下幾步進行介紹: 1,新建乙個c#應用程式,在對話方塊上放置乙個按鈕,name=buttonoutput,text=output,用這個按鈕激發匯出程式;

2,新增對「microsoft excel 9.0 object library」的引用,根據自己計算機上安裝office版本的來確定library的版本;

3,在**中加入引用:

using excel;

using system.reflection;

4,在buttonoutput按鈕單機事件中加入以下**:

string strsql;

int col = 0, row = 2;

//定義資料變數

private oledbconnection conn;

private oledbcommand comm;

private oledbdatareader reader;

//連線到資料庫

string strconnectionstring = @"provider=microsoft.jet.oledb.4.0;data source=db.mdb";

conn = new oledbconnection(strconnectionstring);

conn.open();

comm = conn.createcommand();

//建立excel應用物件

reader.close(); 

comm.close();

wpf datagrid資料 匯出到excel

public static void exporttoexcel datagrid datagridview1,string sheetname 不允許datagridview顯示新增行,負責匯出時會報最後一行未例項化錯誤 false hssfworkbook workbook new hssfwo...

把Gridview中的資料匯出到Excel的通用類

把gridview中的資料匯出到excel 使用方式 1.如果是使用了updatepanel或在母版頁中使用了updatepanel,則在後台 的load裡面加上 scriptmanager.registerpostbackcontrol 匯出控制項按鈕 名稱即可 或 scriptmanager m...

資料庫匯出到EXCEL嚮導

經常在csdn社群上看到有人提出怎樣把資料庫中的資料匯出到excel中,一般人總是在資料庫分析器中複製到資料後,ctrl v到excel中,但效果不理想,有些資料如0001到excel中就成了1,有時還會出現換行的效果,極不美觀.其實在excel中有乙個工具是技持從其他資料來源中引入資料的,當資料來...