Re: Best book to update XML via Perl?

2006-11-06 Thread Wiggins d'Anconia
C.R. wrote: Hi, I have Perl 5.6.0 on Solaris, and on DOS. We have an XML document that has many prices in it that need to be changed. They are keyed by part number, and each part has a price grade, each grade has a price. I know there are many tools that Perl can use to update XML. Which one

Re: Trouble installing module

2006-11-06 Thread Jay Savage
On 11/6/06, C. R. <[EMAIL PROTECTED]> wrote: Hi, I have a Solaris system. I'm having trouble installing a module via the command: perl -MCPAN -e shell 'install XML::Parser' This is the first time my perl 5.6.1 installation has used CPAN to install a module so I had to answer a bunch of questions

Re: Alternate to installing via CPAN?

2006-11-06 Thread Jay Savage
On 11/6/06, C. R. <[EMAIL PROTECTED]> wrote: System: Solaris v5.9 My previous messages reflect that I am having trouble installing any module via the CPAN module in perl. So what are my options? I want to start using XML and have some modules in mind that I need. I have downloaded XML::Simple,

Re: Alternate to installing via CPAN?

2006-11-06 Thread Tom Phoenix
On 11/6/06, C. R. <[EMAIL PROTECTED]> wrote: My previous messages reflect that I am having trouble installing any module via the CPAN module in perl. So what are my options? You can "manually" install, instead of using the CPAN module. Along the way, you'll probably learn what you need to do t

Re: Trouble installing module

2006-11-06 Thread lawrence
> > Hi, I have a Solaris system. I'm having trouble installing a module via > the command: > perl -MCPAN -e shell 'install XML::Parser' > > This is the first time my perl 5.6.1 installation has used CPAN to > install a module so I had to answer a bunch of questions for > configuration. > >

Installation troubles

2006-11-06 Thread C . R .
System: Solaris 5.9 In my previous posts I detail major problems installing modules via CPAN called via "perl -MCPAN -e shell". Perhaps LWP is my first problem. Here are some error messages. LWP not available Please check, if the URLs I found in your co

Re: Where to Run Program?

2006-11-06 Thread C . R .
I also run Activestate Perl on Windows in a DOS box (on Win 2000). First, I open a DOS box. In the DOS box properties (right click on DOS box icon) I have it set up to go right to c:\perl. I have my programs stored in c:\perl\progs. And I have my path variable set to look in c: \perl for the pe

Re: Find all matches in a string via regex

2006-11-06 Thread C . R .
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > > > My first post in this thread shows example data as it is stored in a > > scalar variable. It also shows what the string SHOULD look like after > > the substitution. > > > > Or maybe, perl simply is not able to replace multiple in

Alternate to installing via CPAN?

2006-11-06 Thread C . R .
System: Solaris v5.9 My previous messages reflect that I am having trouble installing any module via the CPAN module in perl. So what are my options? I want to start using XML and have some modules in mind that I need. I have downloaded XML::Simple, XML::Parser, XML::XPath and XML::DOM. Do I

Re: DB question

2006-11-06 Thread lawrence
> I'm a little confused about the whole database thing. I mean, I > understand them and know what they are but which one should really be > used for mission critical applications? > The one that is best for your application. > > So, my question is this... > > I'm a beginning Perl programmer

Trouble installing module

2006-11-06 Thread C . R .
Hi, I have a Solaris system. I'm having trouble installing a module via the command: perl -MCPAN -e shell 'install XML::Parser' This is the first time my perl 5.6.1 installation has used CPAN to install a module so I had to answer a bunch of questions for configuration. First, do I need the

Best book to update XML via Perl?

2006-11-06 Thread C . R .
Hi, I have Perl 5.6.0 on Solaris, and on DOS. We have an XML document that has many prices in it that need to be changed. They are keyed by part number, and each part has a price grade, each grade has a price. I know there are many tools that Perl can use to update XML. Which one is the most s

DB question

2006-11-06 Thread Tom Smith
Hi, This might be a little OT, but I thought I'd pose the question anyway... Let me know if it's OT and I'll take it elsewhere. I'm a little confused about the whole database thing. I mean, I understand them and know what they are but which one should really be used for mission critical appl

Re: Perl Inheritance(take-2)

2006-11-06 Thread Muttley Meen
On 11/6/06, JupiterHost.Net <[EMAIL PROTECTED]> wrote: Muttley Meen wrote: > Hi! Hello, > $a = Package1::new(); > $a->Package2->Create(); # this should call IncErr too > print "ERR1: $a->{err}\n"; # should print 1 > doent't work as I expected. > > Is there something wrong with the way I `bles

Re: Perl Inheritance(take-2)

2006-11-06 Thread JupiterHost.Net
Muttley Meen wrote: Hi! Hello, $a = Package1::new(); $a->Package2->Create(); # this should call IncErr too print "ERR1: $a->{err}\n"; # should print 1 doent't work as I expected. Is there something wrong with the way I `bless`-ed the class Package2 ? use strict, warnings, and most import