Help for this page

Select Code to Download


  1. or download this
    my $returnValue;
    $sth = $self->GetDatabase()->prepare( "CALL mySchema.myStoredProcedure
    +(?,?,?)" );
    ...
    $sth->bind_param_inout(4,\$returnValue,20);
    $sth->execute();
    $sth->finish();