Help for this page
my $dbh = DBI->connect(blah) or die $DBI::errstr; my $sth = $dbh->prepare('INSERT INTO MYTABLE(col1 col2) VALUES (?,?)') +; $sth->execute(@data);
my $dbh = DBI->connect(blah) or die $DBI::errstr; my $sth = $dbh->prepare('UPDATE MYTABLE SET col1=?,col2=?'); $sth->execute(@data);