in reply to Re^3: Passing Variables
in thread Passing Variables

so, If I passed $dbh into a method, then that method should beable to access all functions attached to $dbh?

Replies are listed 'Best First'.
Re^5: Passing Variables
by steves (Curate) on Oct 23, 2004 at 22:36 UTC

    Yes, when a function gets passed a blessed reference (a reference to an object) then the methods associated with that object are available without explicitly importing them.