Basic connection window persistence.

This commit is contained in:
akwizgran
2011-08-11 12:56:21 +01:00
parent 3e913118f2
commit d5d03192e3
6 changed files with 223 additions and 42 deletions

View File

@@ -33,7 +33,7 @@ class H2Database extends JdbcDatabase {
@Inject
H2Database(File dir, @DatabasePassword Password password, long maxSize,
GroupFactory groupFactory) {
super(groupFactory, "BINARY(32)", "BIGINT", "BINARY");
super(groupFactory, "BINARY(32)", "BINARY");
home = new File(dir, "db");
this.password = password;
url = "jdbc:h2:split:" + home.getPath()