Help for this page

Select Code to Download


  1. or download this
        $row_obj->set_field("foo");
        $row_obj->get_field();
    ...
        # instead of 
        $row_obj->field("foo");
        $row->obj_field();
    
  2. or download this
      sub mutator_name_for {
        my ($class, $column) = @_;
        return "set_" . $column->accessor;
      }