Re: What is the best way to parse a GPX (XML) file

2010-06-26 Thread Jenda Krynicky
Date sent: Wed, 16 Jun 2010 20:26:53 +0800 Subject:Re: What is the best way to parse a GPX (XML) file From: Jeff Pang To: robert Key Copies to: beginners@perl.org > 2010/6/16 robert Key : > > Hi I woul

Re: What is the best way to parse a GPX (XML) file

2010-06-16 Thread robert Key
On 16/06/2010 14:29, Owen wrote: Hi I would like to parse GPX file (XML) and insert certain data items into a MySQL database. There are mulitude of XML modules which can be used. These modules all build a hash from the data. Is this done because it is easy to find the the data simply using th

Re: What is the best way to parse a GPX (XML) file

2010-06-16 Thread Shlomi Fish
On Wednesday 16 Jun 2010 15:29:33 Owen wrote: > > Hi I would like to parse GPX file (XML) and insert certain data items > > into a MySQL database. There are mulitude of XML modules which can be > > used. > > > > These modules all build a hash from the data. Is this done because it > > is > > easy

Re: What is the best way to parse a GPX (XML) file

2010-06-16 Thread Owen
> Hi I would like to parse GPX file (XML) and insert certain data items > into a MySQL database. There are mulitude of XML modules which can be > used. > > These modules all build a hash from the data. Is this done because it > is > easy to find the the data simply using the key? > > I don't mind

Re: What is the best way to parse a GPX (XML) file

2010-06-16 Thread Jeff Pang
2010/6/16 robert Key : > Hi I would like to parse  GPX file (XML) and insert certain data items into > a MySQL database. There are mulitude of XML modules which can be used. > > These modules all build a hash from the data. Is this done because it is > easy to find the the data simply using the key

What is the best way to parse a GPX (XML) file

2010-06-16 Thread robert Key
Hi I would like to parse GPX file (XML) and insert certain data items into a MySQL database. There are mulitude of XML modules which can be used. These modules all build a hash from the data. Is this done because it is easy to find the the data simply using the key? I don't mind writing my o