Hi,
How do I succesfully preserve the column order (''$fields'=>
$joined_col') in my array-of-hashes generated using DBIx::Recordset?
When I run the code below, the column order doesn't differ at all from
when I don't tie the %main::set hash.
/Marcus
___________________
use Tie::IxHash;
use DBIx::Recordset;
....
sub execute {
tie %main::set, 'Tie::IxHash';
*main::set = DBIx::Recordset->Search({('!DataSource' => $db,
'!Table'      => $table,
'$fields'     => $joined_col,
'$where'    => $query,
'$max'       => 10)});
....
}________________



Reply via email to