How to import CSV files to an H2 Database

Source: Internet
Author: User
Tags import database

1. Start the H2 database without opening the browser window (opened by default)
2. Added support for the BigDecimal type for database creation SQL statements. By default, the h2 database does not support the bigdecimal type:

SQL code
Copy codeThe Code is as follows:
Create table test (id int (11), charge BigDecimal (12 ))

SQL code
Copy codeThe Code is as follows:
Create table test (id int (11), charge BigDecimal (12 ))


3. Import database scripts by passing Parameters
Copy codeThe Code is as follows:
New Console (). runTool ();
New RunScript (). runCustomTool ("jdbc: h2 :~ /Test "," sa "," "," c:/schema. SQL ");

Import CSV files to the H2 Database
Copy codeThe Code is as follows:
Insert into prefill (select * from csvread ('C:/JV/Demo/prescription2012-05-10 22-26-37.csv '));

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.