Help for this page

Select Code to Download


  1. or download this
    sub AUTOLOAD {
      my $self=shift;
    ...
      unless (exists $self->{$attr}) do_get_the_value_from_db(); # do_... 
    +would get the value and store it in $self->{$attr};
      return $self->{$attr};
    }