in reply to Class data and inheritance
So when Table inherits from IDObject it will use the same constructor and set the database handle.# bare bones example sub new { my $class = shift; bless { dbh => $class->get_db(@_) }, $class; }
_________
broquaint
|
|---|