Help for this page

Select Code to Download


  1. or download this
    %hash; # It stores about 70,000 records,just like $hash{"ID"} = "2002"
    +,etc;
    
  2. or download this
    my $dbh=DBI->connect("xxxx"); # My DB is SQLSERVER 2005
    foreach (keys %hash) {
    ...
        die "Error $query\n" unless $dbh->do($query);
    }
    $dbh->disconnect;
    
  3. or download this
    my $dbh=DBI->connect("xxxx"); # My DB is SQLSERVER 2005
    my $sth=$dbh->prepare(qq{    UPDATE tab SET d='?' WHERE id=?});
    ...
    }
    $sth->finish;
    $dbh->disconnect;