This repository was archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
SWIBRE
Eugene Siow edited this page Apr 10, 2017
·
2 revisions
SWIBRE represents an interface to plugin any existing RDF store and SPARQL engine to do BGP resolution for sparql2sql. There are currently reference implementations for:
The interface to implement is RdfTableMapping:
package uk.ac.soton.ldanalytics.sparql2sql.model;
public interface RdfTableMapping {
public void loadMapping(String filename);
public ResultSet executeQuery(String queryStr, String dialect);
public Boolean hasResults();
}