I have a legacy piece of perl code that uses perl DBI with constructs like
$db->bind_param(1, $some_blob, {TYPE => SQL_BLOB});
where SQL_BLOB is a bareword. I would like to use strict pragma in the same file, but it then complains about the bareword. ('Bareword "SQL_BLOB" not allowed while "strict subs" in use') Can I somehow exempt this line from strict checking?