Created
October 15, 2010 12:58
-
-
Save ricroberts/628136 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# init tdb | |
[] ja:loadClass "com.hp.hpl.jena.tdb.TDB" . | |
tdb:DatasetTDB rdfs:subClassOf ja:RDFDataset . | |
tdb:GraphTDB rdfs:subClassOf ja:Model . | |
<#mydatasetname > rdf:type tdb:DatasetTDB ; | |
rdfs:label "My Data Set" ; | |
tdb:location "/mydatasetdata" ; # or wherever you want the data to be stored | |
. | |
<#graph> rdf:type tdb:GraphTDB ; | |
tdb:location "/tdbgraphdata" ; | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment