The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ODO::Parser::XML - Parser for statements serialized to RDF/XML

SYNOPSIS

 use ODO::Parser::XML;
 
 my $statements = ODO::Parser::XML->parse_file('some/path/to/data.rdfxml');
 
 my $rdf = ' ... rdf xml here ... ';
 my $other_statements = ODO::Parser::XML->parse(\$rdf);
 

DESCRIPTION

RDF/XML parser that implements the ODO::Parser interface.

METHODS

parse( )
select_parser( )

This subroutine allows you to select the SAX implementation that is used by this SAX parser. Argument is a scalar string.

The following options are available, but are not limited to:

XML::LibXML - not actually a SAX engine, but emits SAX events
XML::LibXML::SAX - a SAX parser provided by XML::LibXML
XML::LibXML::SAX::Parser - another SAX parser provided by XML::LibXML; the one used by default. Not sure how different it is from XML::LibXML::SAX
XML::SAX::PurePerl - pure perl implementation; not very efficient.
parse_file( )

COPYRIGHT

Copyright (c) 2006 IBM Corporation.

All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html

1 POD Error

The following errors were encountered while parsing the POD:

Around line 97:

'=item' outside of any '=over'