Connecting Tech Pros Worldwide Help | Site Map

Use of uninitialized value in concatenation (.) or string at MQ.pm line 450.

Newbie
 
Join Date: Jul 2009
Posts: 6
#1: Aug 5 '09
Hello,

Could some please help me fix this error.

Use of uninitialized value in concatenation (.) or string at MQ.pm line 450.

Thanks in advance
numberwhun's Avatar
Site Moderator
 
Join Date: May 2007
Location: New Hampshire
Posts: 2,567
#2: Aug 5 '09

re: Use of uninitialized value in concatenation (.) or string at MQ.pm line 450.


Quote:

Originally Posted by bprabhu17 View Post

Hello,

Could some please help me fix this error.

Use of uninitialized value in concatenation (.) or string at MQ.pm line 450.

Thanks in advance

We would love to help, but you need to first post your code here, surrounded by the necessary code tags. Without it, we cannot help you troubleshoot.

Regards,

Jeff
KevinADC's Avatar
Expert
 
Join Date: Jan 2007
Location: Southern California USA
Posts: 4,091
#3: Aug 5 '09

re: Use of uninitialized value in concatenation (.) or string at MQ.pm line 450.


Quote:

Originally Posted by bprabhu17 View Post

Hello,

Could some please help me fix this error.

Use of uninitialized value in concatenation (.) or string at MQ.pm line 450.

Thanks in advance

Its not an error, its a warning, but it might lead to problems if the variable really does need a value. If the code runs fine, remove the -w flag from the shebang line or if you are using the warnings pragma you can wrap that section of code in a block (if necessary) and use "no warnings".

http://perldoc.perl.org/warnings.html
Reply