Sleepycat::XmlQueryExpression.3pm

Langue: en

Version: 2008-10-21 (fedora - 06/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

XmlQueryExpression - A Perl interface to the DbXml XmlQueryExpression Class

SYNOPSIS

     use Sleepycat::DbXml;
 
     my $mgr = new XmlManager;
     my $txn = $mgr->createTransaction();
     my $exp = $mgr->prepare();
 
     my $query = $exp->getQuery();
 
     my $contextitem = new XmlValue(...);
     my $context = $mgr->createQueryContext;
 
     $exp->execute([$txn,] $contextitem, $context [, $flags]);
     $exp->execute([$txn,] $context [, $flags]);
 
 

DESCRIPTION

CONFORMANCE to C++ API

The Perl interface to XMlValue is identical to the C++ API.

Constructor

This class does not have a public constructor. XmlQueryExpression objects are only returned from XmlManager::prepare.

Methods


getXPathQuery

EXAMPLES

SEE ALSO

AUTHOR

Paul Marquess