Help for this page

Select Code to Download


  1. or download this
    #---------------------------------------------------------
    # Function:   get_records (taken from process_member.pl)
    ...
    # [...]
       return @recs;
    }
    
  2. or download this
    # Function:   get_records (taken from process_member.pl)
    
  3. or download this
    # Arguments:  DB handle
    #             sql query string
    
  4. or download this
       my ( $db_handle_ref, $sql ) = @_;
    
  5. or download this
    # Returns:    result array of SQL query
    
  6. or download this
    sub fetch_matching_process_records {
       my ( $dbh, $sql_query ) = @_;
    ...
       # ProcessRecord objects with a known API
       return @process_records;
    }