Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare($SQL) or die $dbh->errstr;
    $sth->execute() or die $dbh->errstr;
    $dbh->commit or die $dbh->errstr;
    
  2. or download this
    while (($tsid, $userid) = $sth->fetchrow_array) {
        print "$tsid: $userid\n";
    }
    # check for problems which may have terminated the fetch early
    die $sth->errstr if $sth->err;