Record types cannot be duplicated however. DBD sub-objects now have a ->what method for their description. This also adds a method to look up a breaktable by name.
10 lines
140 B
Perl
10 lines
140 B
Perl
package DBD::Driver;
|
|
use DBD::Base;
|
|
@ISA = qw(DBD::Base);
|
|
|
|
sub init {
|
|
return shift->SUPER::init(shift, "driver support (drvet)");
|
|
}
|
|
|
|
1;
|