=pod

if you've got enough control over the flow of control to have the code below
work safely, you probably don't need it

=cut

sub Super_do($){
   if (ref $_[0]){
        $_[0]->execute();
   }else{
        $dbh->do($_[0]);
   }
};

Reply via email to