in reply to Re: Re: MYSQL $dbh->do
in thread MYSQL $dbh->do

Doesnt work!!!

Oh, right. Stupid DBI again. I forgot to add undef.

use DBIx::Simple; my $db = DBIx::Simple->connect(...); $db->query('UPDATE ... SET foo=?, bar=?', $foo, $bar);
There, a lot better :)

- Yes, I reinvent wheels.
- Spam: Visit eurotraQ.

Replies are listed 'Best First'.
Re: Re: Re: Re: MYSQL $dbh->do
by andrew (Acolyte) on Sep 28, 2002 at 20:54 UTC
    were does it say undef, and Im just using

    use DBI;