com.danidemi.jlubricant.embeddable.hsql.InProcessInFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlubricant-embeddable-hsql Show documentation
Show all versions of jlubricant-embeddable-hsql Show documentation
A JLubricant Embeddable that runs the HSQLDB - http://hsqldb.org/
package com.danidemi.jlubricant.embeddable.hsql;
import java.io.File;
public class InProcessInFile extends Storage {
private File folder;
@Override
public boolean requireStandaloneServer() {
return false;
}
@Override
public String getProtocol() {
return "file";
}
@Override
public String getLocation(String dbName, HsqlDbms dbms) {
return folder.getAbsolutePath();
}
}