I have a sql-file containing several statements like this:
create table user (
name varchar(255) not null,
active INTEGER default 1 not null,
valid_from DATETIME not null,
valid_to DATETIME not null,
primary key (name));
I would like to re-use this already existing file for test-purposes.
How can I load this from Java into H2 to create a new schema?
There are 3 options: