This HTML5 document contains 29 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n5http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
dchttp://purl.org/dc/elements/1.1/
n12http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n7http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtJenaSPARQLExample1/sioc.
n4http://rdfs.org/sioc/services#
n9http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n16http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n15http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
siochttp://rdfs.org/sioc/ns#
n11http://vos.openlinksw.com/dataspace/person/owiki#
Subject Item
n9:this
foaf:made
n2:VirtJenaSPARQLExample1
Subject Item
n12:this
sioc:creator_of
n2:VirtJenaSPARQLExample1
Subject Item
n5:item
n4:services_of
n2:VirtJenaSPARQLExample1
Subject Item
n15:this
sioc:creator_of
n2:VirtJenaSPARQLExample1
Subject Item
n16:VOS
sioc:container_of
n2:VirtJenaSPARQLExample1
atom:entry
n2:VirtJenaSPARQLExample1
atom:contains
n2:VirtJenaSPARQLExample1
Subject Item
n2:VirtJenaSPARQLExample1
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:43:04.551412
dcterms:modified
2017-06-13T05:43:04.551412
rdfs:label
VirtJenaSPARQLExample1
foaf:maker
n11:this n9:this
dc:title
VirtJenaSPARQLExample1
opl:isDescribedUsing
n7:rdf
sioc:has_creator
n15:this n12:this
sioc:content
%META:TOPICPARENT{name="VirtJenaProvider"}% %VOSWARNING% ---+ Virtuoso Jena Provider - SPARQL Example 1 <verbatim> import com.hp.hpl.jena.query.*; import com.hp.hpl.jena.rdf.model.RDFNode; import virtuoso.jena.driver.*; public class VirtuosoSPARQLExample1 { /** * Executes a SPARQL query against a virtuoso url and prints results. */ public static void main(String[] args) { String url; if(args.length == 0) url = "jdbc:virtuoso://localhost:1111"; else url = args[0]; /* STEP 1 */ VirtGraph set = new VirtGraph (url, "dba", "dba"); /* STEP 2 */ /* STEP 3 */ /* Select all data in virtuoso */ Query sparql = QueryFactory.create("SELECT * WHERE { GRAPH ?graph { ?s ?p ?o } } limit 100"); /* STEP 4 */ VirtuosoQueryExecution vqe = VirtuosoQueryExecutionFactory.create (sparql, set); ResultSet results = vqe.execSelect(); while (results.hasNext()) { QuerySolution result = results.nextSolution(); RDFNode graph = result.get("graph"); RDFNode s = result.get("s"); RDFNode p = result.get("p"); RDFNode o = result.get("o"); System.out.println(graph + " { " + s + " " + p + " " + o + " . }"); } } } </verbatim>
sioc:id
435b9cae4dd52770cac95f84d605404a
sioc:link
n2:VirtJenaSPARQLExample1
sioc:has_container
n16:VOS
n4:has_services
n5:item
atom:title
VirtJenaSPARQLExample1
atom:source
n16:VOS
atom:author
n9:this
atom:published
2017-06-13T05:43:04Z
atom:updated
2017-06-13T05:43:04Z
sioc:topic
n16:VOS