Re: unable to use perl script with post on university wireless network

2007-09-16 Thread Chas Owens
On 9/16/07, perllearner <[EMAIL PROTECTED]> wrote: > On 16 Sep, 03:11, [EMAIL PROTECTED] (Mumia W.) > wrote: > > On 09/15/2007 01:17 PM, perllearner wrote: > > > > > I am a little stumped as to what is happening, just a few hours ago, I > > > was able to use the same script at home, however on a un

Re: unable to use perl script with post on university wireless network

2007-09-16 Thread perllearner
On 16 Sep, 03:11, [EMAIL PROTECTED] (Mumia W.) wrote: > On 09/15/2007 01:17 PM, perllearner wrote: > > > I am a little stumped as to what is happening, just a few hours ago, I > > was able to use the same script at home, however on a university > > wireless, the script just stalls, and even perl pa

Re: Debugg in PERL

2007-09-16 Thread yitzle
On 9/15/07, Mahurshi Akilla <[EMAIL PROTECTED]> wrote: > > Have you tried perl -d switch ? > Read about perl debuggers here: http://debugger.perl.org/ > > Mahurshi Akilla Thanks you very much for the link!! I've been using Perl for close to a year now and never really knew about the debugger. I'm

Re: parsing csv-file for inserting in database

2007-09-16 Thread Ruprecht Helms
Hi Ken, >> how can I parse a csv-file where the entries are seperated with | . >> The scripts later should put them into a mysql-database using dbi. > > if it just splitting: > > @data = split( /\|/, $line ); I see you are working with array. The using of the for each-loop must be possible

Re: parsing csv-file for inserting in database

2007-09-16 Thread Ken Foskey
On Sun, 2007-09-16 at 12:28 +0200, Ruprecht Helms wrote: > Hi, > > how can I parse a csv-file where the entries are seperated with | . > The scripts later should put them into a mysql-database using dbi. if it just splitting: @data = split( /\|/, $line ); If you forget the backslash it wil

parsing csv-file for inserting in database

2007-09-16 Thread Ruprecht Helms
Hi, how can I parse a csv-file where the entries are seperated with | . The scripts later should put them into a mysql-database using dbi. Especially for me is interessting how to parse the content of the file and store them into different variables for later processing. A scriptexample would be

Re: How to use pragmas into the caller of a module?

2007-09-16 Thread Marcio Faustino
Thanks, that'll work. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Debugg in PERL

2007-09-16 Thread Mahurshi Akilla
On Sep 14, 5:38 am, [EMAIL PROTECTED] (Santana) wrote: > Hei aill, > i'am new in PERL and i would like to ask what are development > envirment that you use ? > And if is possible to make a debugg in PERL like JAVA or Visual > Basic ? > > Thanks, > Santana > [EMAIL PROTECTED] Have you tried perl