Click here to Skip to main content
Click here to Skip to main content

Import Excel files to SQL Server dynamically

By , 3 Sep 2008
 

Introduction

This article will show you how to import an Excel file to SQL Server, dynamically, without the need to open the Import wizard from SQL Server. This could be of great help if you have a lot of Excel files to import.

Using the code

First, create the Datamanage class that holds the import code. The “excelCommand” will create a new table in the SQL Server database, taking into consideration the names and data types of the Excel file fields.

Public Class Datamanage
    ''' <summary />
    ''' Imports the selected Excel file to SQL Server 
    ''' </summary />
   Public Sub importToServer(ByVal ExcelPath As String, _
              ByVal ServerName As String, _
              ByVal DBName As String, ByVal UserName As String, _
              ByVal Password As String, ByVal InsertedTableName As String)
        Try
            Dim ExceCon As String = _
                &quot;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=&quot; & _
                ExcelPath & &quot;; Extended Properties=Excel 8.0&quot;
            Dim excelConnection As System.Data.OleDb.OleDbConnection = _
                New System.Data.OleDb.OleDbConnection(ExceCon)
            excelConnection.Open()
            'Dim OleStr As String = &quot;SELECT * INTO [ODBC; Driver={SQL Server};&quot; & _
                 &quot;Server=Hoss;Database=Excel_Test;Uid=sa;Pwd=sa2008; ].[myTable]   
            FROM [Sheet1$];&quot;
            Dim OleStr As String = &quot;SELECT * INTO [ODBC; Driver={SQL Server};Server=&quot; _
                & ServerName & &quot;;Database=&quot; & DBName & &quot;;Uid=&quot; & _
                UserName & &quot;;Pwd=&quot; & Password & &quot;; ].[&quot; & _
                InsertedTableName & &quot;]   FROM [Sheet1$];&quot;
            Dim excelCommand As New System.Data.OleDb.OleDbCommand(OleStr, _
                                                      excelConnection)
            excelCommand.ExecuteNonQuery()
            excelConnection.Close()
        Catch ex As Exception
            Throw New Exception(&quot;Error: &quot; & ex.Message)
        End Try
    End Sub
End Class

Now, the main form:

Imports System.IO
Public Class ImportExcel
    Dim dm As New Datamanage
    Private Sub Button2_Click(ByVal sender As System.Object, _
            ByVal e As System.EventArgs) Handles Button2.Click
        OpenFileDialog1.ShowDialog()
        txtexcelPath.Text = OpenFileDialog1.FileName
                     
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object,
        ByVal e As System.EventArgs) Handles Button1.Click
        Try
                Dim ExcelPath As String = txtexcelPath.Text.ToLower()
                Dim Ext As String = _
                    ExcelPath.Substring(ExcelPath.LastIndexOf(&quot;.&quot;) + 1)
                If File.Exists(ExcelPath) AndAlso (Ext.Equals(&quot;xls&quot;) _
                        Or Ext.Equals(&quot;xlsx&quot;)) Then
                    dm.importToServer(OpenFileDialog1.FileName, txtServer.Text,_
                        txtDbName.Text, txtusername.Text, txtpassword.Text,_
                        txtInsertedTableName.Text)
                    ProgressBar1.Visible = False
                    MessageBox.Show(&quot;File imported successfully&quot;)
                 End If
        Catch ex As Exception
            ProgressBar1.Visible = False
            MessageBox.Show(ex.Message)
        End Try
    End Sub
End Class

Import_Excel.jpg

I hope this helps!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mohammad Al Hoss
Software Developer CME Offshore
Lebanon Lebanon
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionDownloadmemberMehmet Oya17 Jan '13 - 21:47 
QuestionPush to SQLmemberrichardbrigzy2 Jul '12 - 0:07 
Questioncan you put your project filemembermani.kishore.asp.net27 May '12 - 18:52 
QuestionNeed to Import Excel csv Filememberimahaboob14 May '12 - 5:42 
AnswerTo Mohammed - Importing CSV files to SQL Server in C# [modified]memberShashidhar Jarung9 Apr '12 - 4:27 
GeneralMy vote of 3memberwaaqee25 Jul '11 - 19:18 
GeneralImport Excel files to SQL Server dynamicallymemberBhavik170511 Aug '10 - 18:35 
GeneralRegarding source codememberMember 320625016 Nov '09 - 18:59 
QuestionODBC Connection errormemberNisu Cheriyan30 Mar '09 - 23:53 
GeneralCould not find installable ISAMmemberKaran Mathur29 Mar '09 - 5:46 
GeneralNeed help : Error when executing applicationmemberbondan_intikom21 Oct '08 - 20:05 
GeneralRe: Need help : Error when executing applicationmemberMohammad Al Hoss21 Oct '08 - 21:21 
GeneralRe: Need help : Error when executing applicationmemberbondan_intikom21 Oct '08 - 21:46 
GeneralRe: Need help : Error when executing applicationmemberMohammad Al Hoss22 Oct '08 - 10:27 
GeneralRe: Need help : Error when executing applicationmemberbondan_intikom22 Oct '08 - 15:30 
GeneralRe: Need help : Error when executing applicationmemberMohammad Al Hoss23 Oct '08 - 4:15 
QuestionRe: Need help : Error when executing applicationmemberbondan_intikom3 Nov '08 - 19:29 
AnswerRe: Need help : Error when executing applicationmemberMohammad Al Hoss6 Nov '08 - 21:37 
QuestionTo Mohammadmemberjilynii11 Sep '08 - 0:44 
AnswerRe: To MohammadmemberMohammad Al Hoss12 Sep '08 - 1:58 
QuestionRe: To Mohammad [modified]memberjotapecardas19 Jul '10 - 22:39 
AnswerRe: To Mohammad [adding code solution]memberjotapecardas20 Jul '10 - 3:29 
AnswerRe: To MohammadmemberMohammad Al Hoss20 Jul '10 - 21:19 
GeneralNeed Help.memberashu fouzdar4 Sep '08 - 2:50 
GeneralStrings not imported correctlymemberParas Shah3 Sep '08 - 7:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 3 Sep 2008
Article Copyright 2008 by Mohammad Al Hoss
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid