in reply to Re^3: Perl/SQL syntax error
in thread Perl/SQL syntax error

Thanks Morgon. I have done that, but now have a new error message - I'll sort that out myself. Data is being inserted into the table, but there is a formatting problem in the date column. Back to the drawing board. Thanks for the invaluable advice. I have learned something new today, and am very happy with that...

Content restored by GrandFather

Replies are listed 'Best First'.
Re^5: Perl/SQL syntax error
by kulls (Hermit) on Jul 07, 2009 at 14:39 UTC
    Hi,
    Why don't you use quote() function ?
    my $quotedString = $dbh->quote( $string );

    - Raja