Revision history for DBIx::Class
+ - Added has_column_loaded to Row
- Storage::DBI connect_info supports coderef returning dbh as 1st arg
- add_components() doesn't prepend base when comp. prefixed with +
- $schema->deploy
return undef;
}
+sub has_column_loaded {
+ my ($self, $column) = @_;
+ $self->throw_exception( "Can't call has_column data as class method" ) unless ref $self;
+ return 1
+ if exists $self->{_column_data}{$column};
+ return 0;
+}
+
=head2 get_columns
my %data = $obj->get_columns;