use of org.apache.jena.sdb.store.StoreLoader in project jena by apache.
the class StoreTriplesNodesHashDB2 method loaderSimple.
static StoreLoader loaderSimple(SDBConnection connection) {
// Temporary - simple loader for development.
//new LoaderTuplesNodes(connection, TupleLoaderHashDerby.class),
TupleLoader tLoader = new TupleLoaderOneHash(connection, new TableDescTriples());
StoreLoader sLoader = new TupleGraphLoader(tLoader);
return sLoader;
}
Aggregations