mysema / rdfbean

RDFBean - Object/RDF persistence for Java
19 stars 5 forks source link

Implement latest SPARQL 1.1 Update Specification #49

Open marek-surek opened 11 years ago

marek-surek commented 11 years ago

Currently we are outdated with SPARQL 1.1 Update specification. I will do separate branch to get it in sync with : http://www.w3.org/TR/sparql11-update/

marek-surek commented 11 years ago

Initial commit : https://github.com/mysema/rdfbean/commit/f28da2c22519019d14a54d83e04d96f6b95b1a6b

marek-surek commented 11 years ago

I found barriers in current RDFConnection API, which doesn't allow me to implement LOAD, COPY, MOVE, ADD functions as they are not easily transferable to connection.remove()/update(). I suggest to add raw query update method into SesameConnection or to the whole interface, which will allow us to perform those kind of update functions.

timowest commented 11 years ago

This method should be used for SPARQL Updates https://github.com/mysema/rdfbean/blob/master/rdfbean-core/src/main/java/com/mysema/rdfbean/model/RDFConnection.java#L58

Since it is generic no additional methods should be needed