in reply to Problem with hash dereferencing from DBI example
keys %{ %$ParamValues, %$ParamTypes };
That doesn't make any sense. %{ ... } dereferences a hash reference, but %$ParamValues, %$ParamTypes is not one.
Maybe for (keys %$ParamValues), (keys %$ParamTypes) is meant instead?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with hash dereferencing from DBI example
by mje (Curate) on Mar 08, 2011 at 14:06 UTC | |
by moritz (Cardinal) on Mar 08, 2011 at 14:19 UTC |