in reply to Errors from a simple Package

I think you need
use crsTools4 qq{$sth}; # import an EXPORT_OK var
in the script. The package should probably be
our @EXPORT_OK = qw($dbh $sth); our ($dbh, $sth); # declare vars to be EXPORT_OKed
and remove the our in the connect2db sub.

I don't know where $sth2 would come from.