his實驗把sql server數(shù)據(jù)導出到excel中去_第1頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、HIS實驗把SQL Server數(shù)據(jù)導出到Excel中去蔡1:實驗要求:2:實驗?zāi)康模?:實驗主要步驟:一:打開 VS.NET 2005構(gòu)建好一個程序,界面如下:(注:里面就放了一個datagridview和一個BUTTON按鈕)二:添加一個DB類:代碼如下:using System;using System.Collections.Generic;using System.Text;using System.Data.SqlClient;namespace SqlToExcel class DB public static SqlConnection createCon() return n

2、ew SqlConnection(server=.;database=northwind;uid=sa;pwd=;); 三:在PAGE_LOAD事件里面寫代碼:參考代碼如下:SqlConnection con=DB.createCon(); SqlDataAdapter sda=new SqlDataAdapter(); sda.SelectCommand=new SqlCommand(select * from employees,con); DataSet ds=new DataSet(); sda.Fill(ds,employees); this.dataGridView1.DataSo

3、urce=ds.Tablesemployees; this.dataGridView1.DataBindings;四:單擊button按鈕代碼如下:SqlConnection con = DB.createCon(); SqlCommand sqlCommand=new SqlCommand(select Lastname,firstname,title,address from employees,con); DataSet ds = new DataSet(); SqlDataAdapter sda = new SqlDataAdapter(); sda.SelectCommand = n

4、ew SqlCommand(select * from employees, con); SqlDataAdapter sqlAdapter = new SqlDataAdapter(sqlCommand); /填充數(shù)據(jù) sqlAdapter.Fill(ds, Excel); con.Close(); / 創(chuàng)建Excel對象 Excel.Application xlApp = new Excel.Application(); Workbook wb = xlApp.Workbooks.Add(XlWBATemplate.xlWBATWorksheet); Worksheet ws = (Wor

5、ksheet)wb.Worksheets1; / 設(shè)置標題 xlApp.Cells1, 1 = 會員姓名; xlApp.Cells1, 2 = 性別; xlApp.Cells1, 3 = 籍貫; xlApp.Cells1, 4 = 電子郵件; / 設(shè)置格式 int iMaxRow = ds.TablesExcel.Rows.Count; int iMaxCol = ds.TablesExcel.Columns.Count; ws.get_Range(ws.Cells1, 1, ws.Cells1, iMaxCol).Font.Name = 黑體; ws.get_Range(ws.Cells1,

6、 1, ws.Cells1, iMaxCol).Font.Bold = true; ws.get_Range(ws.Cells1, 1, ws.CellsiMaxRow + 1, iMaxCol).Borders.LineStyle = 1; / 填充數(shù)據(jù) for (int iRow = 0; iRow iMaxRow; iRow+) for (int iCol = 0; iCol iMaxCol; iCol+) xlApp.CellsiRow + 2, iCol + 1 = ds.TablesExcel.RowsiRowiCol.ToString(); / 保存Excel xlApp.Save(H:sheet1.xls); / 打開Excel xlApp.Visible =

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論