return $self->_result()->get_column($method);
}
};
no strict 'refs';
# No need for disabling strict if we do it like this:
*{$AUTOLOAD} = $accessor;
my $symbols = \%main::;
$symbols->{__PACKAGE__}{$method} = $accessor;
return $accessor->( $self, @_ );
-