Import CSV data to Sqlite. Import CSV data to SQLite.

Source: Internet
Author: User

Import CSV data to Sqlite. Import CSV data to SQLite.

When you do the data import, you just need to clarify the two o'clock.

1, Extract Title as field name.

2, data is written to the data pool.

Here SQLite is good for us to solve this kind of problem.

The Fieldsnames attribute solves the problem of extracting title very high, while the data pool, SQLite insert accepts the list dataset of the inclusion tuple. Here a tuple is a row of data.

Finally, the only thing we want to achieve is a section of SQL:

DROP TABLE IF EXISTS [TABLE];CREATE TABLE [TABLE](COL1,COL2,COL3);INSERT  into [TABLE](COL1,COL2,COL3)VALUES(?,?,?);

FORMAT a bit:

DROP TABLE IF EXISTS [{0}];CREATE TABLE [{0}]({1});INSERT  into [{0}]({1})VALUES({2});

Class Library source code see Https://github.com/WandyYing/csv2Sqlite

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.