http://qs321.pair.com?node_id=423863


in reply to Class::Accessor and Storable

not sure if this is related, but I did have issues once which, after many hours of frustration, I discovered stemmed from my use of Storable which exports the methods store & retrieve. My module was a subclass of another which used the method store somewhere.. I wasn't even aware of it.. Anyway Storable was overriding the store method and causing some really weird errors. The solution of course was quite simple..

use Storable();

as opposed to

use Storable;

cheers,

J