启动H2数据库并导入数据库脚本

因工作上的需要,在生产环境使用到嵌入式数据库H2。
修改H2的源码,实现以下几点:
1.启动H2数据库不打开浏览器窗口(默认是打开的)
2.数据库创建SQL增加了支持BigDecimal类型,h2数据库默认是不支持bigdecimal类型的:
create table test(id int(11),charge BigDecimal(12))

3.通过传参数方式导入数据库脚本
new Console().runTool();
new RunScript().runCustomTool("jdbc:h2:~/test", "sa","", "c:/schema.sql");

你可能感兴趣的:(sql,jdbc,浏览器,脚本,嵌入式)