http://www.perlmonks.org?node_id=488054


in reply to Re: Perl to upload blob file to Mysql
in thread Perl to upload blob file to Mysql

Only a cosmetic suggestion:
my $filedata = do { local $/; open my $tarfile, '<:raw', "$domain_path/$file_name" or die $!; # this particular line not that cosmetic... <$tarfile>; };