##
print Dumper \@results;
####
[
[
[ '8959', 'The song by the three rivers', undef, undef ],
[ '10710', 'cars by the rodeo drive', '38', undef],
[ '10710', 'cars by the rodeo drive', '43', undef]
]
]
####
my $records = $result[0];
for my $record ( @$records ) {
print "\t [ @$record ]\n";
}