A universal class to complete import data from an Excel file into a database

Source: Internet
Author: User
How can I do that?
Two File
One is update data to database

First step
I will define two sesion to write the operating table and operating columns in server.
Two Step
Tell the customer where and how many columns they can update.

Column name 1: Real column name 1 # column name 1: Real column name 1 # column name 1: Real column name 1

// Get the data from excle
String strconn = "provider = Microsoft. Jet. oledb.4.0; Data Source = D :\\ withdrawal table. xls; extended properties = \" Excel 8.0 ;\"";
Oledbconnection conn = new oledbconnection (strconn );
Conn. open ();
Oledbdataadapter da = new oledbdataadapter ("select * from [sheet1 $]", Conn );
Dataset DS = new dataset ();
// Import data to a dataset
Da. Fill (DS, "tablename");

// Define SQL dataadapter
Define a dataadapter
Sqldataadapter adapter = new sqldataadapter ();
Adapter. selectcommand = new sqlcommand (query, Conn );
Adapter. Update (DS, "tablename")

Another is import data to database

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.