XML::LibXML::SAX(3) User Contributed Perl Documentation XML::LibXML::SAX(3)NAME
XML::LibXML::SAX - XML::LibXML direct SAX parser
DESCRIPTION
XML::LibXML provides an interface to libxml2 direct SAX interface. Through this interface it is possible to generate SAX events directly
while parsing a document. While using the SAX parser XML::LibXML will not create a DOM Document tree.
Such an interface is useful if very large XML documents have to be processed and no DOM functions are required. By using this interface it
is possible to read data stored within an XML document directly into the application data structures without loading the document into
memory.
The SAX interface of XML::LibXML is based on the famous XML::SAX interface. It uses the generic interface as provided by XML::SAX::Base.
Additionally to the generic functions, which are only able to process entire documents, XML::LibXML::SAX provides parse_chunk(). This
method generates SAX events from well balanced data such as is often provided by databases.
FEATURES
NOTE: This feature is experimental.
You can enable character data joining which may yield a significant speed boost in your XML processing in lower markup ratio situations by
enabling the http://xmlns.perl.org/sax/join-character-data feature of this parser. This is done via the set_feature method like this:
$p->set_feature('http://xmlns.perl.org/sax/join-character-data', 1);
You can also specify a 0 to disable. The default is to have this feature disabled.
AUTHORS
Matt Sergeant, Christian Glahn, Petr Pajas
VERSION
2.0008
COPYRIGHT
2001-2007, AxKit.com Ltd.
2002-2006, Christian Glahn.
2006-2009, Petr Pajas.
perl v5.16.2 2012-10-22 XML::LibXML::SAX(3)
Check Out this Related Man Page
XML::LibXML::SAX(3) User Contributed Perl Documentation XML::LibXML::SAX(3)NAME
XML::LibXML::SAX - XML::LibXML direct SAX parser
DESCRIPTION
XML::LibXML provides an interface to libxml2 direct SAX interface. Through this interface it is possible to generate SAX events directly
while parsing a document. While using the SAX parser XML::LibXML will not create a DOM Document tree.
Such an interface is useful if very large XML documents have to be processed and no DOM functions are required. By using this interface it
is possible to read data stored within an XML document directly into the application data structures without loading the document into
memory.
The SAX interface of XML::LibXML is based on the famous XML::SAX interface. It uses the generic interface as provided by XML::SAX::Base.
Additionally to the generic functions, which are only able to process entire documents, XML::LibXML::SAX provides parse_chunk(). This
method generates SAX events from well balanced data such as is often provided by databases.
FEATURES
NOTE: This feature is experimental.
You can enable character data joining which may yield a significant speed boost in your XML processing in lower markup ratio situations by
enabling the http://xmlns.perl.org/sax/join-character-data feature of this parser. This is done via the set_feature method like this:
$p->set_feature('http://xmlns.perl.org/sax/join-character-data', 1);
You can also specify a 0 to disable. The default is to have this feature disabled.
AUTHORS
Matt Sergeant, Christian Glahn, Petr Pajas
VERSION
2.0018
COPYRIGHT
2001-2007, AxKit.com Ltd.
2002-2006, Christian Glahn.
2006-2009, Petr Pajas.
perl v5.16.3 2013-05-13 XML::LibXML::SAX(3)
sorry wrong forum..i dont know how to delete this or how to move it to HP UX section...
I tested SAX XML parsing using xerces(http://xerces.apache.org/xerces-j/). I tested on Windows XP and HP-UX . I found that parsing time on HP is 5 times that on Windows. My server startup reads a lot of XML... (1 Reply)
Hi,
I'm experiencing difficulty in loading an XML file to an Oracle destination table.I keep running into a memory problem due to the large size of the file.
I want to split the XML file into several smaller files based on the keyword(s)/tags : '' and '' and would like to use a Unix shell... (2 Replies)
Can you please tell for some freeware unix based command line XML parser/tool which will check whether a particular XML corresponds to its XSD or not.
please help immediately......... (15 Replies)
Well I have read several threads on the subject ... but being a newbie like me makes it hard to understand ...
What I need is the following:
Input data:
------- snip ---------
<FavouriteLocations> <FavouriteLocations class="FavouriteList"><Item... (6 Replies)
I want to use sax parser for my application as i have 5 Lakhs of data.
I have the xml file like this
<Nodes>
<Node>
<NodeName>Company</NodeName>
<File>employee_details.csv</File>
<data>employee_data.txt</data>
<Node>
<NodeName>dummy</NodeName>
... (8 Replies)
Learned People,
Hello !
Till today, for the most part, all of the tricky questions/situations that I encountered were already posted by other folks and all I had to do was peruse through these one at a time and I could find some sort of an answer and all I had to do was add some minor tweaks... (5 Replies)
I have an XML with has special character Â.
I wrote a Grep command to find out the special character
grep -i  Filename | grep ShipAddress2
I need the help to know how to find out special character such as  and get the whole XML listed assuming there are more xml data of similar sort for... (3 Replies)
Hi,
We need to produce a XML file based on a record/field delimited data file. At this point we could just script something out but I would like to ask the community what would be the best choice of programming language to do this, in terms of performance of execution, and in terms of complexity... (9 Replies)
The below perl code imports the data in the attached document. However, I can not seem to update the perl code to include a parser like in the desired tab of that document. Thank you :).
Most of the data for the parse is included in the document except for the gene and RNA which can is... (0 Replies)