Help for this page

Select Code to Download


  1. or download this
    SELECT TOP 100 * FROM table
    
  2. or download this
    while ((my $row = $sth->fetchrow_hashref) && (@results < 100)) { push 
    +@results, $row }
    warn ("Wasn't able to get 100 records") if (@results < 100)