in reply to Re: require a module and import array data
in thread require a module and import array data
@LoH array is still not available to main routine########################################################## # db_data.pm use strict; use warnings; package db_data; use Exporter; my @ISA = qw(Exporter); my @EXPORT = qw(@LoH); my @LoH = ( { database => 'Pxxxxx', hostname => 'wpprd0.com', servicename => 'pqxxxx', port => '9010', username => 'mmmmmm', password => 'pl', }, ) ; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: require a module and import array data
by Corion (Patriarch) on Apr 09, 2015 at 14:49 UTC | |
by fionbarr (Friar) on Apr 09, 2015 at 14:52 UTC | |
by Anonymous Monk on Apr 09, 2015 at 14:56 UTC | |
by fionbarr (Friar) on Apr 09, 2015 at 14:51 UTC | |
by Corion (Patriarch) on Apr 10, 2015 at 06:18 UTC | |
|
Re^3: require a module and import array data
by Anonymous Monk on Apr 09, 2015 at 14:47 UTC | |
by fionbarr (Friar) on Apr 09, 2015 at 15:04 UTC |