in reply to DBI-quote doesn't like tied hashes?
Here's another (better?) way to fix it: put it in double quotes to force it into string context:
This fixes it for me. If you do use this, I'd investigate it more to figure out *why* this fixes it, so as not to be burned by any future changes that could screw this up.print $dbh->quote("$p->{test}");
|
|---|