Help for this page

Select Code to Download


  1. or download this
        my $sql = "SELECT * from shop_items";
        my $sth   = $dbh->prepare($sql);
    ...
          {
                 # bla bla bla
          }
    
  2. or download this
       
       while(my $hash_ref = fetch_data("SELECT * FROM shop_items")) 
    ...
               my $sth   = $dbh->prepare($sql);
                  $sth->execute;
         }