in reply to Re: Re: DBI-disconnect ???
in thread DBI-disconnect ???

Okay, here is my off-the-cuff guess.

Why not change package class_Y from
@ISA = qw( class_X );
to
@ISA = qw( DBI class_X );

Replies are listed 'Best First'.
Re: Re: Re: Re: DBI-disconnect ???
by christopherbarsuk (Acolyte) on Aug 14, 2001 at 18:31 UTC
    If I do that, then none of my class_Y methods are available -- it looks in DBI, fails to find them (in DBI::db), and croaks.