in reply to Re^2: How to manage post binary upload with mysql blob fields
in thread How to manage post binary upload with mysql blob fields

Try reading to $file in blocks
my $fh = $q->param('myfile'); binmode $fh; my $block; my $file; while ( read($fh,$block,1024) ){ $file .= $block; } insertRessource( $name, $entryid, $file, $mime );
poj