mirror of
https://github.com/Wisser/Jailer.git
synced 2026-05-22 02:46:36 -05:00
h2 update (1.4.199)
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
# Table; Columns
|
||||
"LANGUAGE"; LANGUAGE_ID SMALLINT; NAME CHAR(20); LAST_UPDATE TIMESTAMP; ;
|
||||
ACTOR; ACTOR_ID DECIMAL(65535, 32767); FIRST_NAME VARCHAR(45); LAST_NAME VARCHAR(45); LAST_UPDATE TIMESTAMP; ;
|
||||
ADDRESS; ADDRESS_ID INTEGER; ADDRESS VARCHAR(50); ADDRESS2 VARCHAR(50) null; DISTRICT VARCHAR(20); CITY_ID INTEGER; POSTAL_CODE VARCHAR(10) null; PHONE VARCHAR(20); LAST_UPDATE TIMESTAMP; ;
|
||||
CATEGORY; CATEGORY_ID SMALLINT; NAME VARCHAR(25); LAST_UPDATE TIMESTAMP; ;
|
||||
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -40,9 +40,9 @@ public class APIExample {
|
||||
private static Subsetter subsetter =
|
||||
new Subsetter(
|
||||
new BasicDataSource(
|
||||
"org.h2.Driver", "jdbc:h2:demo-scott", "sa", "",
|
||||
"org.h2.Driver", "jdbc:h2:" + new File("demo-scott-1.4").getAbsolutePath(), "sa", "",
|
||||
POOL_SIZE,
|
||||
new File("lib/h2-1.3.175.jar")),
|
||||
new File("lib/h2-1.4.199.jar")),
|
||||
null,
|
||||
APIExample.class.getResource("Demo-Scott"),
|
||||
APIExample.class.getResource("Demo-Scott.jm"),
|
||||
@@ -52,9 +52,9 @@ public class APIExample {
|
||||
private static Importer importer =
|
||||
new Importer(
|
||||
new BasicDataSource(
|
||||
"org.h2.Driver", "jdbc:h2:demo-scott-subset", "sa", "",
|
||||
"org.h2.Driver", "jdbc:h2:" + new File("demo-scott-subset-1.4").getAbsolutePath(), "sa", "",
|
||||
10,
|
||||
new File("lib/h2-1.3.175.jar")));
|
||||
new File("lib/h2-1.4.199.jar")));
|
||||
|
||||
/**
|
||||
* Exports data related with employee "SCOTT"
|
||||
|
||||
Reference in New Issue
Block a user