// Make sure the SQLite JDBC driver is loaded
try {
Class.forName("org.sqlite.JDBC").newInstance();
} catch (Exception ex) {
throw new StoreException("SQLite JDBC not available.", ex);
}
// Check for unsupported components in the address and scheme.
// (we only accept/require a scheme + path + fragment)
checkNoAuthority(address);