in reply to Re: oracle connection
in thread oracle connection

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

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

Replies are listed 'Best First'.
Re^3: oracle connection
by Eliya (Vicar) on Jun 01, 2012 at 18:34 UTC

    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' ) = ( ... );