in reply to Inheritance confusion
The fact is that the new class method in:
does not give back a DBIx::SQLEngine object, but a DBIx::SQLEngine::Driver::Mysql::V3_0 one as you can see from the debugger:my $self = $class->SUPER::new(@_);
I suspect that the fetch_select method is actually present in this latter class, not in the frontend DBIx::SQLEngine, hence the problems. Are you sure that the DBIx::SQLEngine is intended for subclassing?DB<3> x $sqldb 0 DBIx::SQLEngine::Driver::Mysql::V3_0=HASH(0x1a7c478) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Inheritance confusion
by srdst13 (Pilgrim) on Aug 08, 2006 at 17:12 UTC | |
by eric256 (Parson) on Aug 08, 2006 at 17:22 UTC | |
by polettix (Vicar) on Aug 08, 2006 at 23:56 UTC |