Help for this page

Select Code to Download


  1. or download this
    sub doit {
      ...
      Database::Special->doSomethingSpecial($db);
      # no need to rebless, you haven't tampered with $db
    }
    
  2. or download this
      sub doSomethingSpecial {
        my ($self) = @_;
        ...
      }
    
  3. or download this
      sub doSomethingSpecial {
        my ($class, $object) = @_;
        ...
      }