Not logged in : Login
(Sponging disallowed)

About: VirtJenaSPARQLExample6     Goto   Sponge   Distinct   Permalink

An Entity of Type : atom:Entry, within Data Space : www.openlinksw.com associated with source document(s)
QRcode icon
http://www.openlinksw.com/describe/?url=http%3A%2F%2Fwww.openlinksw.com%2Fdataspace%2Fdav%2Fwiki%2FVOS%2FVirtJenaSPARQLExample6

AttributesValues
has container
Date Created
maker
topic
described by
seeAlso
Date Modified
link
id
  • f983f4d2669c76270501bb1ea83a16ce
  • f983f4d2669c76270501bb1ea83a16ce
content
  • %META:TOPICPARENT{name="VirtJenaProvider"}% %VOSWARNING% ---+ Virtuoso Jena Provider - SPARQL Example 6 <verbatim> import java.util.*; import com.hp.hpl.jena.query.*; import com.hp.hpl.jena.util.iterator.ExtendedIterator; import com.hp.hpl.jena.graph.Node; import com.hp.hpl.jena.graph.Triple; import virtuoso.jena.driver.*; public class VirtuosoSPARQLExample6 { 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"); VirtGraph graph = new VirtGraph ("Example6", url, "dba", "dba"); graph.clear (); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("test Transaction Commit."); graph.getTransactionHandler().begin(); System.out.println("begin Transaction."); System.out.println("Add 3 triples to graph <Example6>."); graph.add(new Triple(foo1, bar1, baz1)); graph.add(new Triple(foo2, bar2, baz2)); graph.add(new Triple(foo3, bar3, baz3)); graph.getTransactionHandler().commit(); System.out.println("commit Transaction."); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); ExtendedIterator iter = graph.find(Node.ANY, Node.ANY, Node.ANY); System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:"); for ( ; iter.hasNext() ; ) System.out.println ((Triple) iter.next()); graph.clear (); System.out.println("\nCLEAR graph <Example6>"); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("Add 1 triples to graph <Example6>."); graph.add(new Triple(foo1, bar1, baz1)); System.out.println("test Transaction Abort."); graph.getTransactionHandler().begin(); System.out.println("begin Transaction."); System.out.println("Add 2 triples to graph <Example6>."); graph.add(new Triple(foo2, bar2, baz2)); graph.add(new Triple(foo3, bar3, baz3)); graph.getTransactionHandler().abort(); System.out.println("abort Transaction."); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); iter = graph.find(Node.ANY, Node.ANY, Node.ANY); System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:"); for ( ; iter.hasNext() ; ) System.out.println ((Triple) iter.next()); graph.clear (); System.out.println("\nCLEAR graph <Example6>"); } } </verbatim>
  • %META:TOPICPARENT{name="VirtJenaProvider"}% %VOSWARNING% ---+ Virtuoso Jena Provider - SPARQL Example 6 <verbatim> import java.util.*; import com.hp.hpl.jena.query.*; import com.hp.hpl.jena.util.iterator.ExtendedIterator; import com.hp.hpl.jena.graph.Node; import com.hp.hpl.jena.graph.Triple; import virtuoso.jena.driver.*; public class VirtuosoSPARQLExample6 { 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"); VirtGraph graph = new VirtGraph ("Example6", url, "dba", "dba"); graph.clear (); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("test Transaction Commit."); graph.getTransactionHandler().begin(); System.out.println("begin Transaction."); System.out.println("Add 3 triples to graph <Example6>."); graph.add(new Triple(foo1, bar1, baz1)); graph.add(new Triple(foo2, bar2, baz2)); graph.add(new Triple(foo3, bar3, baz3)); graph.getTransactionHandler().commit(); System.out.println("commit Transaction."); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); ExtendedIterator iter = graph.find(Node.ANY, Node.ANY, Node.ANY); System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:"); for ( ; iter.hasNext() ; ) System.out.println ((Triple) iter.next()); graph.clear (); System.out.println("\nCLEAR graph <Example6>"); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("Add 1 triples to graph <Example6>."); graph.add(new Triple(foo1, bar1, baz1)); System.out.println("test Transaction Abort."); graph.getTransactionHandler().begin(); System.out.println("begin Transaction."); System.out.println("Add 2 triples to graph <Example6>."); graph.add(new Triple(foo2, bar2, baz2)); graph.add(new Triple(foo3, bar3, baz3)); graph.getTransactionHandler().abort(); System.out.println("abort Transaction."); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); iter = graph.find(Node.ANY, Node.ANY, Node.ANY); System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:"); for ( ; iter.hasNext() ; ) System.out.println ((Triple) iter.next()); graph.clear (); System.out.println("\nCLEAR graph <Example6>"); } } </verbatim>
Title
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
has creator
is described using
atom:source
atom:updated
  • 2014-04-29T00:31:43Z
  • 2014-04-29T00:31:43Z
atom:title
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
atom:author
label
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
  • VirtJenaSPARQLExample6
topic
atom:published
  • 2010-02-01T13:20:08Z
  • 2010-02-01T13:20:08Z
Faceted Search & Find service v1.17_git122 as of Jan 03 2023


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.3330 as of Apr 5 2024, on Linux (x86_64-generic-linux-glibc25), Single-Server Edition (30 GB total memory, 26 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software