in reply to returning a hash from a module

The problem is you call the subroutine as a class method:
MyDB->get_transaction(10000);
Therefore, the first argument to the subroutine is not the id, but the class name. Insert the following line to the top of the sub:
my $class = shift;
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: returning a hash from a module
by jms53 (Monk) on Mar 01, 2013 at 19:13 UTC
    Thanks! Now it's always returning something, although now it's an empty hash. Looks like I have some cleaning up to do in the module over the week end.
    J -