1.啟動H2數(shù)據(jù)庫不打開瀏覽器窗口(默認是打開的)
2.數(shù)據(jù)庫創(chuàng)建SQL增加了支持BigDecimal類型,h2數(shù)據(jù)庫默認是不支持bigdecimal類型的:
Sql代碼
復制代碼 代碼如下:
create table test(id int(11),charge BigDecimal(12))
Sql代碼
復制代碼 代碼如下:
create table test(id int(11),charge BigDecimal(12))
3.通過傳參數(shù)方式導入數(shù)據(jù)庫腳本
復制代碼 代碼如下:
new Console().runTool();
new RunScript().runCustomTool("jdbc:h2:~/test", "sa","", "c:/schema.sql");
H2 數(shù)據(jù)庫導入CSV文件
復制代碼 代碼如下:
insert into prescription ( select * from csvread('c:/JV/Demo/prescription2012-05-10 22-26-37.csv')) ;