Help for this page

Select Code to Download


  1. or download this
    $query=$dbh->prepare($SQLstatement);
     $query->execute();
    ...
       $storedProfile{user_id}            = $row->{user_id};
       # copy over each item from the result row
     $query->finish();
    
  2. or download this
    %storedProfile = %row;
    
    ...
    for (@keys){
     $storedProfile($key) = $row($key);
    }