4 messages in com.mysql.lists.perlupdate command
FromSent OnAttachments
Eko Budiharto20 Mar 2005 07:04 
Rhino20 Mar 2005 07:53 
Robin Hughes20 Mar 2005 11:16 
David Dick20 Mar 2005 12:20 
Subject:update command
From:Eko Budiharto (ebud@yahoo.com)
Date:03/20/2005 07:04:05 AM
List:com.mysql.lists.perl

Hi,

I am having problem with update command. I run it directy in the mysql console,
it works. But when I run it from perl, it does not work.

here is the perl script

my $server2 = 'localhost'; my $db2 = '<database>'; my $username2 = '<username>'; my $password2 = '<password';

my $dbh2 = DBI->connect("dbi:mysql:$db2:$server2", $username2, $password2);

$dbh2->disconnect; I do not why the "UPDATE" command does not work with the script. Please help. I
thought I used wrong syntax.