com.danidemi.jlubricant.embeddable.h2.MemoryStorage 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;
public class MemoryStorage extends H2Storage {
@Override
public String getStorageSpecifier() {
return "mem";
}
@Override
public boolean isMemoryMode() {
return true;
}
}