RE: MLDBM - need help with error message

2005-12-21 Thread Mark Knoop
I wrote: > Taking on board and looking into the input by yourself and Dr > Ruud especially regarding the problems with SDBM I am wondering > if I can fix it quickly by changing the type of DBM it uses. > Am I right in thinking it chooses out of DB_File or GDBM_File or > SDBM_File options depending

RE: MLDBM - need help with error message

2005-12-21 Thread Mark Knoop
$Bill wrote: > > Create a small complete snippet that reproduces your problem so we have an > easy way to reproduce it. > Ok... I have tried to remove as much excess stuff from the main program so that it still produces the same error. I end up with: ## #!/usr/bin/perl

Re: MLDBM - need help with error message

2005-12-20 Thread Dr.Ruud
Mark Knoop: > Basically what I am asking is if anyone has used MLDBM.pm in AS Perl > on a windows box and has come across something like this, or if > someone can help me with my understanding of what MLDBM does or how > it works so that I might understand what the error msg means. http://msgs.se

Re: MLDBM - need help with error message

2005-12-20 Thread $Bill Luebkert
Mark Knoop wrote: > Hi > > Not sure if this falls within the remit of good question etiquette but on > the off chance that someone can help me out here goes... > > I have downloaded some code in order to run a proof of concept for an > application that obtains information for a given user-agent

RE: MLDBM - need help with error message

2005-12-20 Thread Mark Knoop
Have run some further tests and found that if I run the script ua.pl on a unix box it creates a large file called my-wurfl.db but on windows it creates two 0 byte files my-wurfl.db.dir and my-wurfl.db.pag Thought this might give a clue... Regards Mark

MLDBM - need help with error message

2005-12-20 Thread Mark Knoop
Hi Not sure if this falls within the remit of good question etiquette but on the off chance that someone can help me out here goes... I have downloaded some code in order to run a proof of concept for an application that obtains information for a given user-agent of a mobile device. This applica

RE: Warnings error message

2005-10-12 Thread Darren Barnes
> -Original Message- > From: [EMAIL PROTECTED] [mailto:activeperl- > [EMAIL PROTECTED] On Behalf Of Ken Barker > Sent: 12 October 2005 16:02 > To: activeperl@listserv.ActiveState.com > I am doing a select from an SQL table and then concatenating the results > into a pipe delimited file.

RE: Warnings error message

2005-10-12 Thread Brian Raven
Ken Barker <> wrote: > Gurus, > > I am doing a select from an SQL table and then concatenating the > results into a pipe delimited file. When I have warnings enabled I > get a stream of errors warning about an uninitialized value in > concatenation during a while loop to produce the file. > >

Re: Warnings error message

2005-10-12 Thread pDale
On 10/12/05, Ken Barker <[EMAIL PROTECTED]> wrote: Gurus,I am doing a select from an SQL table and then concatenating the results into a pipe delimited file.  When I have warnings enabled I get a stream of errors warning about an uninitialized value in concatenation during a while loop to produce t

Warnings error message

2005-10-12 Thread Ken Barker
Gurus, I am doing a select from an SQL table and then concatenating the results into a pipe delimited file. When I have warnings enabled I get a stream of errors warning about an uninitialized value in concatenation during a while loop to produce the file. Use of uninitialized value in concat

RE: Error Message

2004-10-07 Thread Arms, Mike
Chris [perl AT thesnyderhome DOT com] wrote: >Mike Arms wrote: >>You are making the incorrect assumption that the function >>call intRand(45) will get evaluated inside of double quotes. >>This is not the case. >> >>You can do it in two steps: >> >> my $index = intRand(45); >> print " $class[$inde

RE: Error Message

2004-10-06 Thread Perl Developer
I actually just tested it and the function call intRand(45) did get evaluated. Perl 5.8.3 build 809 -- Chris Mike Arms wrote: You are making the incorrect assumption that the function call intRand(45) will get evaluated inside of double quotes. This is not the case. You can do it in two steps:

RE: Error Message

2004-10-06 Thread Kamal Ahmed
intRand is a sub: sub intRand { my $range = shift; return int(rand() * $range); } -Original Message- From: Darrell Gammill [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 6:17 PM To: Jeff Westman; Kamal Ahmed Cc: [EMAIL PROTECTED] Subject: RE: Error Message what is

RE: Error Message

2004-10-06 Thread Perl Developer
is undef (as above). HTH Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kamal Ahmed Sent: Wednesday, October 06, 2004 5:01 PM To: [EMAIL PROTECTED] Subject: Error Message I am getting an error message:   " Use of uninitialized value in concatenati

RE: Error Message

2004-10-06 Thread Arms, Mike
Kamal Ahmed [EMAIL PROTECTED] wrote: >I am getting an error message: >"Use of uninitialized value in concatenation (.) or string at ./exploitD.pl line 2093. > >Line 2093: >print " $class[intRand(45)]"; > >How can i get rid of this message ? You are maki

RE: Error Message

2004-10-06 Thread Wayne Simmons
You could try defining or initializing the value you're attempting to concatenate. :-D -Wayne   -Original Message- From: Kamal Ahmed [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 4:01 PM To: [EMAIL PROTECTED] Subject: Error Message I am getting an error message:  

RE: Error Message

2004-10-06 Thread Darrell Gammill
what is 'intRand'? Do you mean 'int rand'? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Westman Sent: Wednesday, October 06, 2004 5:08 PM To: Kamal Ahmed Cc: [EMAIL PROTECTED] Subject: Re: Error Message You are trying to p

Re: Error Message

2004-10-06 Thread Jeff Westman
-Jeff On Wed, 6 Oct 2004 18:00:41 -0400, Kamal Ahmed <[EMAIL PROTECTED]> wrote: > > I am getting an error message: > > " > Use of uninitialized value in concatenation (.) or string at ./exploitD.pl > line 2093. > > Line 2093: > > print &q

Error Message

2004-10-06 Thread Kamal Ahmed
Title: Message I am getting an error message:   " Use of uninitialized value in concatenation (.) or string at ./exploitD.pl line 2093.   Line 2093:   print " $class[intRand(45)]";   Hoe can i get rid of this message ?   T

Re: error message

2003-11-01 Thread $Bill Luebkert
Stephen Eko Budiharto wrote: > hi list, > I would like to ask about this error message. > when I ran the script under DOS command, it ran well, but when I ran it > using browser, I got this error message. Can anyone help me to explain > what the error means? > >

Re: error message

2003-11-01 Thread Helphand
At 08:53 PM 11/1/03 +0700, Stephen Eko Budiharto wrote: hi list, I would like to ask about this error message. when I ran the script under DOS command, it ran well, but when I ran it using browser, I got this error message. Can anyone help me to explain what the error means? CGI output doesn&#

error message

2003-11-01 Thread Stephen Eko Budiharto
hi list, I would like to ask about this error message. when I ran the script under DOS command, it ran well, but when I ran it using browser, I got this error message. Can anyone help me to explain what the error means? 'C:\webmis\cgi-bin\helloWorld_di_write_ke_file.pl' script p

Re: how to return an error message to the system

2001-12-17 Thread Jenda Krynicky
From: "jama Djafarov" <[EMAIL PROTECTED]> > guys, does anyone know how to return an error message to the system?? > I need to return an error to win system. I think you are looking for die() perldoc -f die or maybe exit()