user1809379
user1809379

Reputation: 29

how to store N-triple rdf in triple store and querying SPARQl

I am trying to try out storing N-triple and querying them. What is the simplest way to store N-triple in triple store or rather the simplest server do that.

I would highly appreciate help in this.

Upvotes: 2

Views: 718

Answers (2)

Thomas
Thomas

Reputation: 2193

Try Fuseki if you would prefer using a web based query form or the ability to query your data like any SPARQL endpoint via http.

For more details see my answer on this question: Where do I test my queries for my RDF written in SPARQL

Upvotes: 1

user205512
user205512

Reputation: 8878

Try Apache Jena, and its TDB database:

$ tdbloader --loc mystore file.nt
$ tdbquery --loc mystore "select * {?s ?p ?o}" # direct query
$ tdbquery --loc mystore --query myquery.sparql # from a file

Upvotes: 2

Related Questions