in reply to Re: Putting mod Storable output into MySQL
in thread Putting mod Storable output into MySQL
Now that I've gotten the blob into MySQL I'm having trouble getting it back out. When I do it like so
$reply[0][0] contains an integer 1. I don't think a placeholder is appropriate in this case, is it?$command ='select datastructure from blobtest where id=1'; $sth = $dbh->prepare($command); @reply = $sth->execute || die "Could not execute MySQL statement: $com +mand"; my $reconstituted = thaw($reply[0][0]);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Putting mod Storable output into MySQL
by pg (Canon) on Oct 15, 2005 at 18:36 UTC | |
by cormanaz (Deacon) on Oct 15, 2005 at 23:17 UTC |