Out of interest, why did you turn strict "off" ?
Try:
my $count = int(rand($DB->table('Category')->count)) || 1;
return $DB->table('Category')->select( { ID => $count }, ['Full_Name'] )->fetchrow;
}
I moved the thread by order of Heckler :)
Try:
Code:
sub { my $count = int(rand($DB->table('Category')->count)) || 1;
return $DB->table('Category')->select( { ID => $count }, ['Full_Name'] )->fetchrow;
}
I moved the thread by order of Heckler :)