欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

H2 数据库导入CSV文件实现原理简析

程序员文章站 2023-11-29 09:50:22
1.启动h2数据库不打开浏览器窗口(默认是打开的) 2.数据库创建sql增加了支持bigdecimal类型,h2数据库默认是不支持bigdecimal类型的: sql代码...
1.启动h2数据库不打开浏览器窗口(默认是打开的)
2.数据库创建sql增加了支持bigdecimal类型,h2数据库默认是不支持bigdecimal类型的:

sql代码
复制代码 代码如下:

create table test(id int(11),charge bigdecimal(12))

sql代码
复制代码 代码如下:

create table test(id int(11),charge bigdecimal(12))


3.通过传参数方式导入数据库脚本
复制代码 代码如下:

new console().runtool();
new runscript().runcustomtool("jdbc:h2:~/test", "sa","", "c:/schema.sql");

h2 数据库导入csv文件
复制代码 代码如下:

insert into prescription ( select * from csvread('c:/jv/demo/prescription2012-05-10 22-26-37.csv')) ;