com.danidemi.jlubricant.embeddable.h2.FileStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlubricant-embeddable-h2 Show documentation
Show all versions of jlubricant-embeddable-h2 Show documentation
An Embeddable running the H2 database http://www.h2database.com.
The newest version!
package com.danidemi.jlubricant.embeddable.h2;
/**
*
* @author danidemi
*/
public class FileStorage extends H2Storage {
@Override
public String getStorageSpecifier() {
return "file";
}
@Override
public boolean isMemoryMode() {
return false;
}
}