Help for this page

Select Code to Download


  1. or download this
        my $sth = $dbh->prepare("SELECT ... WHERE ... ? ...");
        $sth = Statement->wrap($sth, "Label");
        ...
        $sth->execute(@args);
    
  2. or download this
        package Statement;
    
    ...
        }
    
        1;