| RDF-Query documentation | view source | Contained in the RDF-Query distribution. |
RDF::Query::Parser::SPARQL11 - SPARQL 1.1 Parser.
This document describes RDF::Query::Parser::SPARQL11 version 2.907.
use RDF::Query::Parser::SPARQL11; my $parser = RDF::Query::Parse::SPARQL11->new(); my $iterator = $parser->parse( $query, $base_uri );
...
Beyond the methods documented below, this class inherits methods from the RDF::Query::Parser class.
newReturns a new Turtle parser.
parse ( $query, $base_uri, $update_flag )Parses the $query, using the given $base_uri.
If $update_flag is true, the query will be parsed allowing
SPARQL 1.1 Update statements.
parse_pattern ( $pattern, $base_uri, \%namespaces )Parses the $pattern, using the given $base_uri and returns a
RDF::Query::Algebra pattern.
parse_expr ( $pattern, $base_uri, \%namespaces )Parses the $pattern, using the given $base_uri and returns a
RDF::Query::Expression pattern.
errorReturns the error encountered during the last parse.
| RDF-Query documentation | view source | Contained in the RDF-Query distribution. |