Asp. Net-"Excel"-Bulk load data from Excel into SQL Server database

Source: Internet
Author: User
Tags sql server connection string

used a SqlBulkCopy class.

Core Code Analysis

Code I haven't tested yet.

                    stringExcelconnectionstring =string. Format ("Provider=microsoft.ace.oledb.12.0;data source={0}; Extended Properties=excel 8.0", path); //Create Connection to Excel Workbook                    using(OleDbConnection connection =NewOleDbConnection (excelconnectionstring)) {OleDbCommand command=NewOleDbCommand ("Select * FROM [sheet1$]", connection); Connection.                        Open (); //Create DbDataReader to Data Worksheet                        using(DbDataReader dr =command. ExecuteReader ()) {//SQL Server Connection String                            stringsqlConnectionString =@"Data source=.\sqlexpress;initial catalog=exceldb;integrated security=true"; //Bulk Copy to SQL Server                            using(SqlBulkCopy bulkcopy =NewSqlBulkCopy (sqlconnectionstring)) {Bulkcopy.destinationtablename="Employee";                                Bulkcopy.writetoserver (DR); Label1.Text="The data has been exported succefuly from Excel to SQL"; }                        }                    }

Asp. Net-"Excel"-Bulk load data from Excel into SQL Server database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.