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

# Standard CSV file - ',' separator and the first column is not "entry"
use strict;
our @ISA = ('Database::Abstraction');
sub new
{
my $class = shift;
my %args = (ref($_[0]) eq 'HASH') ? %{$_[0]} : @_;
return $class->SUPER::new(no_entry => 1, sep_char => ',', %args);
}
1;