on Thu, 23 May 2002 11:33:37 GMT, [EMAIL PROTECTED] (Sven
Bentlage) wrote: 

>> Secondly: Have you tried to "print" out the actually query to see
>> what it contains?
> 
>      not  sure how to do that...

Instead of 

        $dbh->do("the sql-query"); 

write

        $sql = "the sql-query";
        print "$sql\n";
        $dbh->do($sql);

-- 
felix

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to