Help for this page

Select Code to Download


  1. or download this
    package MyDateExperiment ;
    use base qw/Class::DBI/ ;
    ...
      $class->set_nls_date_format( $oldFormat ) ;
      return $ans ;
    }
    
  2. or download this
    foreach my $meth (qw/create get set/) {
      no strict qw/refs/ ;
    ...
        return $ans ;
      }
    }
    
  3. or download this
      no strict qw/refs/ ;
      my $originalFunction = \&{__PACKAGE__ . "::$meth" } ;
    ...
         my $ans = $originalFunction->( $class, @_ ) ;
    ...
      }
    
  4. or download this
    ...
         my ($papa) = Class::ISA::super_path($class) ;
         my $papaMethod = $papa->can($meth) ;
         my $ans = $papaMethod->($papa, @_ ) ;
    ...
    
  5. or download this
    ...
        my $ans = $class->SUPER::{"$meth"}( @_ ) ;
    ...