iariza has asked for the wisdom of the Perl Monks concerning the following question:
Hash Ref:create_profile( $dbh, $profile_ref )
Function Definition (first lines):my $profile_ref ={ PROFILE_NAME => "test_profile", SESSIONS_PER_USER => "1", CPU_PER_SESSION => "DEFAULT", PRIVATE_SGA => "UNLIMITED", PASSWORD_LIFE_TIME => "90" };
... What's wrong? What am I missing? Thanks in advance for your assitance.sub create_profile() { my ($dbh, $profile_specs_ref) = @_; my ($sql, $key, $value); my %profile_specs = %{$profile_specs_ref};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Can't pass a hash ref to a a subroutine
by Zaxo (Archbishop) on Sep 14, 2004 at 23:43 UTC | |
|
Re: Can't pass a hash ref to a a subroutine
by mifflin (Curate) on Sep 14, 2004 at 23:45 UTC | |
|
Re: Can't pass a hash ref to a a subroutine
by sintadil (Pilgrim) on Sep 14, 2004 at 23:46 UTC |