Guest User

Untitled

a guest
Jun 18th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # init tdb
  2. [] ja:loadClass "com.hp.hpl.jena.tdb.TDB" .
  3.  
  4. tdb:DatasetTDB rdfs:subClassOf ja:RDFDataset .
  5. tdb:GraphTDB rdfs:subClassOf ja:Model .
  6.  
  7. <#mydatasetname > rdf:type tdb:DatasetTDB ;
  8. rdfs:label "My Data Set" ;
  9. tdb:location "/mydatasetdata" ; # or wherever you want the data to be stored
  10. .
  11.  
  12. <#graph> rdf:type tdb:GraphTDB ;
  13. tdb:location "/tdbgraphdata" ;
  14. .
Add Comment
Please, Sign In to add comment