Help for this page

Select Code to Download


  1. or download this
    # This is for calling stored procedures by just passing in a dbh, the 
    +procedure name and a param hash
    sub call_plsql {
    ...
    
          return;
    }
    
  2. or download this
     my $params = {
                              p_PromoID             => $promo_id,
    ...
                             };
    
          call_plsql( $dbh, 'wp.create_unique_codes', $params );
    
  3. or download this
    create or replace procedure insert_profile_survey(
        p_primary_usage          VARCHAR DEFAULT NULL,
        p_gender                 VARCHAR DEFAULT NULL,
    ...