package DBIx::Custom::Table; use strict; use warnings; use base 'Object::Simple'; use Carp 'croak'; # Carp trust relationship push @DBIx::Custom::CARP_NOT, __PACKAGE__; __PACKAGE__->attr(['dbi', 'name', 'base']); our $AUTOLOAD; sub AUTOLOAD { my $self = shift; # Method name my ($package, $mname) = $AUTOLOAD =~ /^([\w\:]+)\:\:(\w+)$/; # Method $self->{_methods} ||= {}; # Method if (my $method = $self->{_methods}->{$mname}) { return $self->$method(@_) } # DBI method return $self->dbi->$mname(@_); } sub method { my $self = shift; # Merge my $methods = ref $_[0] eq 'HASH' ? $_[0] : {@_}; $self->{_methods} = {%{$self->{_methods} || {}}, %$methods}; return $self; } sub new { my $self = shift->SUPER::new(@_); # Methods my @methods = qw/insert update update_all delete delete_all select/; foreach my $method (@methods) { $self->method( $method => sub { my $self = shift; return $self->dbi->$method(table => $self->name, @_); } ); } return $self; } sub DESTROY { } 1; =head1 NAME DBIx::Custom::Table - Table base class(experimental) =head1 SYNOPSIS use DBIx::Custom::Table; my $table = DBIx::Custom::Table->new(name => 'books'); =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 C $table->delete(where => \%where); Same as C of L except that you don't have to specify table name. =head2 C $table->delete_all(param => $param); Same as C of L except that you don't have to specify table name. =head2 C $table->method(insert => sub { my $self = shift; return $self->dbi->insert(table => $self->name, @_); }); Add method to a L object. =head2 C $table->insert(param => \%param); Same as C of L except that you don't have to specify table name. =head2 C $table->method( select_complex => sub { my $self = shift; return $self->dbi->select($self->name, ...); }, some_method => sub { ... } ); Define method. =head2 C my $table = DBIx::Custom::Table->new; Create a L object. =head2 C