The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 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', sep_char => ',', %args);
}
1;
1;