walidazizi / rdflib

Automatically exported from code.google.com/p/rdflib
Other
0 stars 0 forks source link

Store SPARQL Support #121

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Niklas Lindström suggested making a ticket for this suggestion.

Currently rdflib.graph.Graph's query method exclusively uses
the RDFLib SPARQL implementation. Some stores, however have 
their own implementation that might be better or more efficient
to use.

Suggest a modification to the query method to do something 
along the lines of,

    if hasattr(self.store, "query") and use_store_provided:
        return self.store.query(...)

where use_store_provided is a new keyword argument to the Graph's
method which would default to True, to allow the user to force
the use of RDFLib's SPARQL if desired.

Original issue reported on code.google.com by wwai...@gmail.com on 13 Feb 2010 at 8:55

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r1925.

Original comment by gromgull on 31 Jan 2011 at 6:21

GoogleCodeExporter commented 8 years ago
This issue was closed by revision fe56c099f0f7.

Original comment by gromgull on 30 Mar 2011 at 9:07