package
Database::test4;
# Standard CSV file - ',' separator and the first column is not "entry"
use
strict;
use
warnings;
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;