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