On Wed, Oct 22, 2003 at 01:19:09PM -0700, A L wrote:
> #!/usr/bin/perl
> use DBI;
...
> if ($date ne $update){
> #update the table1
> my $update_table1=$dbh1->prepare(qq{UPDATE table1
> SET name=?,desc=?,type=?,update=?,count=?
> WHERE idnum=?});
Is the code getting here?
Error checking? Did the prepare succeed?
> $update_table1->execute($name,$desc,$type,$update,$count,$idn);
Did the execute succeed?