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/
n2http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n4http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
dchttp://purl.org/dc/elements/1.1/
n17http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n3http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n8http://vos.openlinksw.com/dataspace/person/dav#
n13http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n9http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n12http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtJenaSPARQLExample10/sioc.
n7http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n8:this
foaf:made
n4:VirtJenaSPARQLExample10
Subject Item
n17:this
sioc:creator_of
n4:VirtJenaSPARQLExample10
Subject Item
n2:item
n3:services_of
n4:VirtJenaSPARQLExample10
Subject Item
n9:this
sioc:creator_of
n4:VirtJenaSPARQLExample10
Subject Item
n13:VOS
sioc:container_of
n4:VirtJenaSPARQLExample10
atom:entry
n4:VirtJenaSPARQLExample10
atom:contains
n4:VirtJenaSPARQLExample10
Subject Item
n4:VirtJenaSPARQLExample10
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T05:40:15.447642
dcterms:modified
2017-06-13T05:40:15.447642
rdfs:label
VirtJenaSPARQLExample10
foaf:maker
n7:this n8:this
dc:title
VirtJenaSPARQLExample10
opl:isDescribedUsing
n12:rdf
sioc:has_creator
n9:this n17:this
sioc:content
%VOSWARNING% %META:TOPICPARENT{name="VirtJenaProvider"}% ---+ Virtuoso Jena Provider - SPARQL Example 10 <verbatim> import com.hp.hpl.jena.query.*; import com.hp.hpl.jena.rdf.model.RDFNode; import virtuoso.jena.driver.*; public class VirtuosoSPARQLExample10 { /** * 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 ("gr", url, "dba", "dba"); /* STEP 2 */ /* STEP 3 */ /* Select all data in virtuoso */ String query = "SELECT * WHERE { ?s ?p ?o } limit 100"; /* STEP 4 */ QueryExecution vqe = VirtuosoQueryExecutionFactory.create (query, 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
9d0eeb8a9ead7fc752921133a888747d
sioc:link
n4:VirtJenaSPARQLExample10
sioc:has_container
n13:VOS
n3:has_services
n2:item
atom:title
VirtJenaSPARQLExample10
atom:source
n13:VOS
atom:author
n8:this
atom:published
2017-06-13T05:40:15Z
atom:updated
2017-06-13T05:40:15Z
sioc:topic
n13:VOS