From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
our @ISA = ('Database::Abstraction');
sub new
{
my $class = shift;
my %args = (ref($_[0]) eq 'HASH') ? %{$_[0]} : @_;
return $class->SUPER::new(id => 'ID', %args);
}
1;