Skip to content
This repository was archived by the owner on Jan 5, 2022. It is now read-only.
Eugene Siow edited this page Apr 10, 2017 · 2 revisions

SWIBRE (SWappable Interface for BGP Resolution Engines)

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();
}

Clone this wiki locally