in reply to DBI-disconnect ???
Link 2 above has some code, and link 3 has the trace.
The problem has hit people upgrading to DBI 1.15 from 1.13. If you post some code maybe we can find a similar problem where you might be having problems with inheritance like the code below from link 1.
Re: DBI 1.15 subclassing bug! ---------------------------------------------------------------------- +---------- To: "dbi-users" <dbi-users@perl.org> Subject: Re: DBI 1.15 subclassing bug! From: "Phil R Lawrence" <prlawrence@Lehigh.EDU> Date: Mon, 9 Apr 2001 11:40:39 -0400 Cc: "Tim Bunce" <Tim.Bunce@ig.co.uk> Delivered-To: mailing list dbi-users@perl.org Mailing-List: contact dbi-users-help@perl.org; run by ezmlm References: <00a501c0bede$2b70be00$5b34b480@lehigh.edu> <2001040700050 +9.F20472@ig.co.uk> ---------------------------------------------------------------------- +---------- "Tim Bunce" <Tim.Bunce@ig.co.uk> wrote: > On Fri, Apr 06, 2001 at 05:11:38PM -0400, Phil R Lawrence wrote: > > Uncaught exception from user code: > > DBI->disconnect is not a DBI method... > I wouldn't want to call you a beginner, but somewhere, for some > reason, you're executing "DBI->disconnect" or "$foo->disconnect" > where $foo contains "DBI". You were kind to not call me a beginner! Nonetheless, the issue was a screwed up @ISA ordering. See below for the bug. I'm glad you added the code to make DBI->disconnect blow up in DBI 1.15. I learned a bit more about inheritance as a result. Thanks, Phil R Lawrence package STORIT; use SUBCLASS_DBI; use vars qw( @ISA ); @ISA = qw ( SUBCLASS_DBI ); sub new { my $proto = shift; my $class = ref($proto) || $proto; my $s = $class->test_connect or die; return $s; } #============================================================== package STORIT::db; use vars qw( @ISA ); @ISA = qw( STORIT SUBCLASS_DBI::db ); # ^^^^^^ # this caused disconnect invocation to be first looked # for as a DBI method (due to STORIT's @ISA) instead # of as a SUBCLASS_DBI::db method (which would have # correctly resolved as a DBI::db method). #============================================================== package STORIT::st; use vars qw( @ISA ); @ISA = qw(SUBCLASS_DBI::st);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: DBI-disconnect ???
by christopherbarsuk (Acolyte) on Aug 13, 2001 at 00:35 UTC | |
by mattr (Curate) on Aug 14, 2001 at 16:28 UTC | |
by christopherbarsuk (Acolyte) on Aug 14, 2001 at 18:31 UTC |