Help for this page

Select Code to Download


  1. or download this
    $status = $sth->execute;
    print "Status = $status\n"; # the RC is always -1  weather the execute
    + worked or not
    ...
    while ($sth->fetch || die "Cant fetch data - $DBI::errstr\n") { 
        print "ID: $col1\n";
    }