Not logged in : Login

About: VirtJenaSPARQLExample3     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : atom:Entry, within Data Space : ods.openlinksw.com associated with source document(s)

AttributesValues
type
Date Created
Date Modified
label
  • VirtJenaSPARQLExample3
maker
Title
  • VirtJenaSPARQLExample3
isDescribedUsing
has creator
content
  • %META:TOPICPARENT{name="VirtJenaProvider"}% %VOSWARNING% ---+ Virtuoso Jena Provider - SPARQL Example 3 import java.util.*; import com.hp.hpl.jena.query.*; import com.hp.hpl.jena.rdf.model.RDFNode; import com.hp.hpl.jena.graph.Node; import com.hp.hpl.jena.graph.Triple; import virtuoso.jena.driver.*; public class VirtuosoSPARQLExample3 { public static void main(String[] args) { String url; if(args.length == 0) url = "jdbc:virtuoso://localhost:1111"; else url = args[0]; Node foo1 = Node.createURI("http://example.org/#foo1"); Node bar1 = Node.createURI("http://example.org/#bar1"); Node baz1 = Node.createURI("http://example.org/#baz1"); Node foo2 = Node.createURI("http://example.org/#foo2"); Node bar2 = Node.createURI("http://example.org/#bar2"); Node baz2 = Node.createURI("http://example.org/#baz2"); Node foo3 = Node.createURI("http://example.org/#foo3"); Node bar3 = Node.createURI("http://example.org/#bar3"); Node baz3 = Node.createURI("http://example.org/#baz3"); List triples = new ArrayList (); VirtGraph graph = new VirtGraph ("Example3", url, "dba", "dba"); graph.clear (); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("Add 3 triples to graph ."); graph.add(new Triple(foo1, bar1, baz1)); graph.add(new Triple(foo2, bar2, baz2)); graph.add(new Triple(foo3, bar3, baz3)); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); triples.add(new Triple(foo1, bar1, baz1)); triples.add(new Triple(foo2, bar2, baz2)); graph.isEmpty(); System.out.println("Remove 2 triples from graph "); graph.remove(triples); System.out.println("graph.getCount() = " + graph.getCount()); System.out.println("Please check result with isql tool."); /* EXPECTED RESULT: SQL> sparql select ?s ?p ?o from where {?s ?p ?o}; s p o VARCHAR VARCHAR VARCHAR _______________________________________________________________________________ http://example.org/#foo3 http://example.org/#bar3 http://example.org/#baz3 1 Rows. -- 26 msec. SQL> */ } }
id
  • 2831c7a3581a85fd0781947547dd0bca
link
has container
http://rdfs.org/si...ices#has_services
atom:title
  • VirtJenaSPARQLExample3
atom:source
atom:author
atom:published
  • 2017-06-13T05:42:17Z
atom:updated
  • 2017-06-13T05:42:17Z
topic
is made of
is container of of
is link of
is http://rdfs.org/si...vices#services_of of
is links to of
is creator of of
is atom:entry of
is atom:contains of
Faceted Search & Find service v1.17_git150 as of Jan 20 2025


Alternative Linked Data Documents: iSPARQL | ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 08.03.3332 as of Sep 11 2024, on Linux (x86_64-generic-linux-glibc25), Single-Server Edition (15 GB total memory, 773 MB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2025 OpenLink Software