in reply to Re: Putting mod Storable output into MySQL
in thread Putting mod Storable output into MySQL

Yes I do, presuming I'm doing the placeholder operation correctly
my $frozen = freeze($data); my $command = "insert into blobtest (key,blob) values (1,?)"; my $sth = $dbh->prepare($command); $sth->execute($frozen) || die "Could not execute MySQL statement: $com +mand";
This last line gives the same error.