On Sat, 01 Sep 2001 17:14:34 -0700, Alex Krohn wrote:

>the following works
>of course:
>
>       my $sth = $dbh->prepare ('INSERT INTO foo (a) VALUES ("hello?")');

It does? Yet IMO it should have been

     my $sth = $dbh->prepare ("INSERT INTO foo (a) VALUES ('hello?')");


Check out the quote method.

-- 
        Bart.

Reply via email to