Help for this page

Select Code to Download


  1. or download this
    sub new {
       my $class = shift;
    ...
       };
       return bless $self, $class;
    }
    
  2. or download this
    # grab the pk if found, remove it and store for later use
    # and remove it's column from the table
    ...
       splice(@{$self->{'fields_arry'}},$self->{'pk_index'},1)
          if defined $self->{'pk_index'};
    }
    
  3. or download this
    sub get_attrib { shift->{shift} }