You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
vaadin-clubhelper/src/test/java/de/kreth/vaadin/clubhelper/H2FileConfiguration.java

13 lines
312 B

package de.kreth.vaadin.clubhelper;
import java.io.File;
public class H2FileConfiguration extends H2MemoryConfiguration {
@Override
public String getUrl() {
File f = new File("./database");
System.out.println("Databasepath: " + f.getAbsolutePath());
return "jdbc:h2:file:" + f.getAbsolutePath();
}
}