Is there a way to do the same thing with UPDATE? how would I do something like:my $dbh = DBI->connect(blah) or die $DBI::errstr; my $sth = $dbh->prepare('INSERT INTO MYTABLE(col1 col2) VALUES (?,?)') +; $sth->execute(@data);
Thanks in advance!my $dbh = DBI->connect(blah) or die $DBI::errstr; my $sth = $dbh->prepare('UPDATE MYTABLE SET col1=?,col2=?'); $sth->execute(@data);
In reply to DBI and UPDATE by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |