Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: oracle connection

by Eliya (Vicar)
on Jun 01, 2012 at 18:00 UTC ( [id://973828]=note: print w/replies, xml ) Need Help??


in reply to oracle connection

You could put them in a hash. For example, pass the names to the routine (e.g. proc( [qw(foo bar)] )), and then say in the routine

my $names = shift; ... @v{@$names} = $sth->fetchrow()

(The @v{...} is a hash slice, which means you can assign multiple entries in one go.)

You can then access the "variables" as $v{foo} and $v{bar}.

Replies are listed 'Best First'.
Re^2: oracle connection
by Corion (Patriarch) on Jun 01, 2012 at 18:04 UTC

    You can also directly ask DBI to return you a hash:

    my $hash = $sth->fetchrow_hashref();

      Sure you can (presuming the query produces the desired column names).

      I was mainly trying to answer the general case, i.e. the typical "beginner's" problem of wanting to dynamically create variables like

      $xxx = "$DBNAME,$USERNAME,$PROFILE"; my ( '$xxx' ) = ( ... );

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://973828]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (8)
As of 2024-04-19 08:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found