Help for this page

Select Code to Download


  1. or download this
      my $hash = $dbconn->selectall_hashref($sql_statement);
    
  2. or download this
      my $sth  = $dbconn->prepare($sql_statement);
          .   .   .   .   .   .   .
      my $hash = $dbconn->selectall_hashref($sth);
    
  3. or download this
      {
        local $dbconn->{RaiseError} = 1;
        my $hash = $dbconn->selectall_hashref($sql_statement);
          .   .   .   .   .   .   .
      }