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
$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
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
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
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
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
> -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.
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.
>
>
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
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
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
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:
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
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
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
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:
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
-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
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
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?
>
>
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
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
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()
23 matches
Mail list logo