Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: my hash used only once: possible typo

by james2vegas (Chaplain)
on Aug 23, 2010 at 16:50 UTC ( [id://856754]=note: print w/replies, xml ) Need Help??


in reply to my hash used only once: possible typo

Are you sure this warning is spurious? Basically it means that %SQL::Wrapper::q is not used anywhere else, at all, for example this code doesn't produce the warning:
{ package SQL_Wrapper; use strict; use warnings; our %q; } package main; use strict; use warnings; my %q = %SQL_Wrapper::q; $q{f} = 42;
but this code does:
{ package SQL_Wrapper; use strict; use warnings; # our %q; } package main; use strict; use warnings; my %q = %SQL_Wrapper::q; $q{f} = 42;
What is setting/changing %SQL_Wrapper::q in your program or modules that your program is using?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://856754]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-19 19:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found