in reply to Re: Perl to upload blob file to Mysqlin thread Perl to upload blob file to Mysql
my $filedata = do { local $/; open my $tarfile, '<:raw', "$domain_path/$file_name" or die $!; # this particular line not that cosmetic... <$tarfile>; }; [download]