Re: Tie hashes in DBIx::Recordset [OT]

2002-03-13 Thread Marcus Claesson
::set, 'Tie::IxHash'; *main::set = DBIx::Recordset->Search({('!DataSource' => $db, '!Table' => $table, '$fields' => $joined_col, '$where'=> $query, '$max' => 10)}); } Marcus Ged Haywood

Tie hashes in DBIx::Recordset

2002-03-13 Thread Marcus Claesson
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: