Help for this page

Select Code to Download


  1. or download this
    my $dbh = "123456"; # just as a test, instead of DBI->connect(....);
    
    ...
      # okay, dbh actually points to a real db connection
      print "dbh is truly valid";
    }
    
  2. or download this
    if (!$dbh) {
      die "no db connection!";
    } else {
      $dbh->run_some_command();
    }