Help for this page

Select Code to Download


  1. or download this
     sub install_method {
            # special class method called directly by apps and/or drivers
    ...
            DBI->_install_method("DBI::${subtype}::$method", "$filename at
    + line $line", \%attr); <b># Line causing the redefine</b>
        }
    
  2. or download this
    sub install_method {
            # special class method called directly by apps and/or drivers
    ...
            my %attr = %{$attr||{}}; # copy so we can edit
            DBI->_install_method("DBI::${subtype}::$method", "$filename at
    + line $line", \%attr);
        }