From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
our @ISA = ( 'Database::Abstraction' );
sub new
{
my $class = shift ;
my %args = ( ref ( $_ [0]) eq 'HASH' ) ? %{ $_ [0]} : @_ ;
return $class ->SUPER::new( id => 'ID' , %args );
}
1;
|