Excel導(dǎo)入SQLServer的三種方案_第1頁
Excel導(dǎo)入SQLServer的三種方案_第2頁
Excel導(dǎo)入SQLServer的三種方案_第3頁
Excel導(dǎo)入SQLServer的三種方案_第4頁
全文預(yù)覽已結(jié)束

下載本文檔

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

文檔簡(jiǎn)介

1、方案一:通過OleDB方式獲取Excel文件的數(shù)據(jù),然后通過DataSet中轉(zhuǎn)到SQLServeropenFileDialog=newOpenFileDialog();openFileDialog.Filter=Excelfiles(*.xls)|*.xls;if(openFileDialog.ShowDialog()=DialogResult.OK)FileInfofileInfo=newFileInfo(openFileDialog.FileName);stringfilePath=fileInfo.FullName;stringconnExcel=Provider=Microsoft.J

2、et.OLEDB.4.0;DataSource=+filePath+;ExtendedProperties=Excel8.0;tryOleDbConnectionoleDbConnection=newOleDbConnection(connExcel);oleDbConnection.Open();/獲取excel表DataTabledataTable=oleDbConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables,null);/獲取sheet名,其中01.N:按名稱排列的表單元素stringtableName=dataTable.Rows

3、02.ToString().Trim();tableName=+tableName.Replace(,)+;利用SQL語句從Excel文件里獲取數(shù)據(jù)/stringquery=SELECTclassDate,classPlace,classTeacher,classTitle,classIDFROM+tableName;stringquery=SELECT日期,開課城市,講師,課程名稱,持續(xù)時(shí)間FROM+tableName;dataSet=newDataSet();/OleDbCommandoleCommand=newOleDbCommand(query,oleDbConnection);/Ol

4、eDbDataAdapteroleAdapter=newOleDbDataAdapter(oleCommand);OleDbDataAdapteroleAdapter=newOleDbDataAdapter(query,connExcel);oleAdapter.Fill(dataSet,gch_Class_Info);/dataGrid1.DataSource=dataSet;/dataGrid1.DataMember=tableName;dataGrid1.SetDataBinding(dataSet,gch_Class_Info);從excel文件獲得數(shù)據(jù)后,插入記錄到SQLServer

5、的數(shù)據(jù)表DataTabledataTable1=newDataTable();SqlDataAdaptersqlDA1=newSqlDataAdapter(SELECTclassID,classDate,classPlace,classTeacher,classTitle,durativeDateFROMgch_Class_Info,sqlConnection1);SqlCommandBuildersqlCB1=newSqlCommandBuilder(sqlDA1);sqlDA1.Fill(dataTable1);foreach(DataRowdataRowindataSet.Tablesg

6、ch_Class_Info.Rows)DataRowdataRow1=dataTable1.NewRow();dataRowlclassDate=dataRow日期;dataRowlclassPlace=dataRow開課城市;dataRow1classTeacher=dataRow講師;dataRow1classTitle=dataRow課程名稱;dataRow1durativeDate=dataRow持續(xù)時(shí)間;dataTable1.Rows.Add(dataRow1);Console.WriteLine(新插入+dataTable1.Rows.Count.ToString()+條記錄);s

7、qlDA1.Update(dataTable1);oleDbConnection.Close();catch(Exceptionex)Console.WriteLine(ex.ToString();方案二:直接通過SQL語句執(zhí)行SQLServer的功能函數(shù)將Excel文件轉(zhuǎn)換到SQLServer數(shù)據(jù)庫OpenFileDialogopenFileDialog=newOpenFileDialog();openFileDialog.Filter=Excelfiles(*.xls)|*.xls;SqlConnectionsqlConnection1=null;if(openFileDialog.Sho

8、wDialog()=DialogResult.OK)stringfilePath=openFileDialog.FileName;sqlConnection1=newSqlConnection();sqlConnection1.ConnectionString=server=(local);integratedsecurity=SSPI;initialcatalog=Library;/importexcelintoSQLServer2000/*stringimportSQL=SELECT*intolive41FROMOpenDataSource+(Microsoft.Jet.OLEDB.4.0

9、,DataSource=+E:022n.xls+;UserID=;Password=;Extendedproperties=Excel5.0).Sheet1$;*/exportSQLServer2000intoexcelstringexportSQL=EXECmaster.xp_cmdshellbcpLibrary.dbo.live41out+filePath+-c-q-S+-U+-P+;trysqlConnection1.Open();/SqlCommandsqlCommand1=newSqlCommand();/sqlCommand1.Connection=sqlConnection1;/

10、sqlCommand1.CommandText=importSQL;/sqlCommand1.ExecuteNonQuery();/MessageBox.Show(importfinish!);SqlCommandsqlCommand2=newSqlCommand();sqlCommand2.Connection=sqlConnection1;sqlCommand2.CommandText=exportSQL;sqlCommand2.ExecuteNonQuery();MessageBox.Show(exportfinish!);catch(Exceptionex)MessageBox.Sho

11、w(ex.ToString();if(sqlConnection1!=null)sqlConnection1.Close();sqlConnection1=null;方案三:通過到入Excel的VBAdll,通過VBA接口獲取Excel數(shù)據(jù)到DataSetOpenFileDialogopenFile=newOpenFileDialog();openFile.Filter=Excelfiles(*.xls)|*.xls;ExcelIOexcelio=newExcelIO();if(openFile.ShowDialog()=DialogResult.OK)if(excelio!=null)exc

12、elio.Close();excelio=newExcelIO(openFile.FileName);object,range=excelio.GetRange();excelio.Close();DataSetds=newDataSet(xlsRange);intx=range.GetLength(0);inty=range.GetLength(1);DataTabledt=newDataTable(xlsTable);DataRowdr;DataColumndc;ds.Tables.Add(dt);for(intc=1;c=y;c+)dc=newDataColumn();dt.Columns.Add(dc);objecttemp=ne

溫馨提示

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

評(píng)論

0/150

提交評(píng)論