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')) ;
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')) ;
上一篇: jsp 重复提交问题
下一篇: sqlserver中触发器+游标操作实现