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


in reply to Inserting into SQL

sounds like a quoting problem to me. when dealing with text or binary data always quote the value like:
my $sql = "INSERT INTO feedback SET fulltext=" . $dbh->quote($feedback);

hth,
snowcrash