franz inc logo  
  download learning center franz inc search franz inc resources franz inc          

allegrograph
racer
tbc
services
support
  Learning Center
  Documentation
  Updates
     Info
  FAQ
about

RSS Feeds

AllegroServe at opensource.franz.com

AGSparqlLimitOffset.java

package com.franz.ag.examples;

import com.franz.ag.*;

public class AGSparqlLimitOffset {

    /**
     * Demonstrates basics of using LIMIT and OFFSET in SPARQL 
     *
     * @param args unused
     * @throws AllegroGraphException
     */
    public static void main(String[] args) throws AllegroGraphException {
        // Connect to server, which must already be running.
        AllegroGraphConnection ags = new AllegroGraphConnection();
        try {
            ags.enable();
        } catch (Exception e) {
            throw new AllegroGraphException("Server connection problem", e);
        }

        // Create a fresh triple store
        AllegroGraph ts = ags.renew("sparqllimitoffset", AGPaths.TRIPLE_STORES);

        // Load the Kennedy data
        AGLoadNtriples.loadNTriplesWithTiming(ts,AGPaths.dataSources("kennedy.ntriples"));
        
        // Index the store for querying, wait until indexing is complete.
        ts.indexAllTriples(true);

        // Query for the first 20 place names ordered by name 
        String query =
        "PREFIX ex: <http://example.org/kennedy/> " +
        "SELECT ?name " +
        "WHERE { ?place ex:name ?name } " +
        "ORDER BY ?name " +
        "LIMIT 20";
        
        // Query the store and show the results
        SPARQLQuery sq = new SPARQLQuery();
        sq.setTripleStore(ts);
        sq.setQuery(query);
        AGSparqlSelect.doSparqlSelect(sq);
        
        // Now query using an OFFSET to skip the first 5 places
        // and provide the next 10, ordered by name -- check this
        // against the above solutions
        query =
        "PREFIX ex: <http://example.org/kennedy/> " +
        "SELECT ?name " +
        "WHERE { ?place ex:name ?name } " +
        "ORDER BY ?name " +
        "OFFSET 5 " + 
        "LIMIT 10";
            
        // Query the store and show the results
        sq.setQuery(query);
        AGSparqlSelect.doSparqlSelect(sq);
            
        // Close the triple store and disconnect from the server
        ts.closeTripleStore();
        ags.disable();
    }

}

Up | Next

 

© 2008 Franz Inc - Privacy Statement
[ Consulting Services | Franz | TopQuadrant | Racer Systems ]