Re: Parsing large XML file

2007-08-02 Thread Jenda Krynicky
From: "Mike Blezien" <[EMAIL PROTECTED]> > we need to parse some very large XML files, approx., 900-1000KB's filesize. A > sample of a typical XML file can be view here that would be parsed: > http://projects.thunder-rain.com/uploads/01.xml I'm probably comming late, but the anyway ... this

Re: Parsing large XML file - Revisited

2007-07-26 Thread Srikanth
On Jul 25, 9:11 pm, [EMAIL PROTECTED] (Mike Blezien) wrote: > Rob, > > - Original Message - > From: "Rob Dixon" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: "Mike Blezien" <[EMAIL PROTECTED]> > Sent: Wednesday, July 25, 2007

Re: Parsing large XML file - Revisited

2007-07-25 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: Cc: "Mike Blezien" <[EMAIL PROTECTED]> Sent: Wednesday, July 25, 2007 10:57 AM Subject: Re: Parsing large XML file - Revisited Mike Blezien wrote: Mirod wrote: On Jul 22, 3:3

Re: Parsing large XML file - Revisited

2007-07-25 Thread Rob Dixon
Mike Blezien wrote: Mirod wrote: On Jul 22, 3:33 am, [EMAIL PROTECTED] (Dr.Ruud) wrote: "Mike Blezien" schreef: > my $article_number = $elt->first_child_text('article_number'); > my $dist_number= $elt->first_child_text('distributor_number'); > my $dist_name = $elt->first_chil

Re: Parsing large XML file - Revisited

2007-07-25 Thread Mike Blezien
Mirod, - Original Message - From: "mirod" <[EMAIL PROTECTED]> To: Sent: Monday, July 23, 2007 12:42 PM Subject: Re: Parsing large XML file - Revisited On Jul 22, 3:33 am, [EMAIL PROTECTED] (Dr.Ruud) wrote: "Mike Blezien" schreef: > my $article_nu

Re: Parsing large XML file - Revisited

2007-07-24 Thread mirod
On Jul 22, 3:33 am, [EMAIL PROTECTED] (Dr.Ruud) wrote: > "Mike Blezien" schreef: > > > my $article_number = $elt->first_child_text('article_number'); > > my $dist_number= $elt->first_child_text('distributor_number'); > > my $dist_name = $elt->first_child_text('distributor_name'); > >

Re: Parsing large XML file - Revisited

2007-07-22 Thread Dr.Ruud
"Mike Blezien" schreef: > my $article_number = $elt->first_child_text('article_number'); > my $dist_number= $elt->first_child_text('distributor_number'); > my $dist_name = $elt->first_child_text('distributor_name'); > my $artist = $elt->first_child_text('artist'); > my $

Re: Parsing large XML file - Revisited

2007-07-21 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: "Perl List" Cc: "Mike Blezien" <[EMAIL PROTECTED]> Sent: Saturday, July 21, 2007 12:12 PM Subject: Re: Parsing large XML file - Revisited Mike Blezien wrote: Rob Dixon wr

Re: Parsing large XML file - Revisited

2007-07-21 Thread Rob Dixon
Mike Blezien wrote: Rob Dixon wrote: Mike Blezien wrote: we need to parse some very large XML files, approx., 900-1000KB's filesize. A sample of a typical XML file can be view here that would be parsed: http://projects.thunder-rain.com/uploads/01.xml I was planning on using the XML::

Re: Parsing large XML file - Revisited

2007-07-21 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: "Perl List" Cc: "Mike Blezien" <[EMAIL PROTECTED]> Sent: Sunday, July 15, 2007 7:49 PM Subject: Re: Parsing large XML file Mike Blezien wrote: we need to parse some v

Re: Parsing large XML file

2007-07-16 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: Cc: "Mike Blezien" <[EMAIL PROTECTED]> Sent: Monday, July 16, 2007 5:04 AM Subject: Re: Parsing large XML file Mike Blezien wrote: Rob Dixon wrote: Mike Blezien wrote: we n

Re: Parsing large XML file

2007-07-16 Thread Rob Dixon
Mike Blezien wrote: Rob Dixon wrote: Mike Blezien wrote: we need to parse some very large XML files, approx., 900-1000KB's filesize. [snip] Your application of XML::Twig seems exactly right. I'm not sure what it is you don't understand, but if you use this as your 'get_products' subrou

Re: Parsing large XML file

2007-07-15 Thread Mike Blezien
Rob, - Original Message - From: "Rob Dixon" <[EMAIL PROTECTED]> To: "Perl List" Cc: "Mike Blezien" <[EMAIL PROTECTED]> Sent: Sunday, July 15, 2007 7:49 PM Subject: Re: Parsing large XML file Mike Blezien wrote: we need to parse some v

Re: Parsing large XML file

2007-07-15 Thread Rob Dixon
Mike Blezien wrote: we need to parse some very large XML files, approx., 900-1000KB's filesize. A sample of a typical XML file can be view here that would be parsed: http://projects.thunder-rain.com/uploads/01.xml I was planning on using the XML::Twig module to do this, using the follow