- or download this
sub get_transactions
{
...
}
return %transactions;
}
- or download this
my %transac = MyDB->get_transactions( 10000);
print Dumper %transac;
- or download this
#Module:
...
...
#script
my $transac = MyDB->get_transactions( 10000);
print Dumper $transac;