in reply to selectall_hashref

When I pull a query like that, I normally do it like:
my $dbh = DBI->connect('DBI:Sybase:#####', '#####', '#####', { RaiseE +rror => 1, AutoCommit => 1}); my $sql = "select Col1, Col2, Col3 from TABLE where Col4 = 1"; my $data_all = $dbh->selectall_arrayref($sql, { 'Columns' => {} } ); for my $row ( @$data_all ) { print "$_ => $row->{$_}\n" for keys %$row; }
Will that do what you are looking for.

Don
WHITEPAGES.COM | INC
Everything I've learned in life can be summed up in a small perl script!

Replies are listed 'Best First'.
Re^2: selectall_hashref
by mnlight (Scribe) on Jan 05, 2006 at 06:43 UTC
    I resorted back to my old way. Thank you for your help.
      That is because you must include the name of the column in uppercase letters, instead of 'Col1', use 'COL1'.
        anoonymous Monk, that made the trick !! many thanks :-)