|
||||
sybperl-l ArchiveUp Prev Next
From: "Louis Proyect" <lnp3 at columbia dot edu> > Something like
>
> @res = $dbh->ct_sql($cmd, undef, 1);
> foreach my $row (@res) {
> foreach my $col (keys(%$row)) {
> print "$col: $row->{$col}\n";
> }
> }
This worked great, but for some reason the columns/data did not come out
in the order they originated in the select statement in the stored
procedure. All I need is a fix on that.
|