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

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’)) ;

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐