Gurus:
I'm trying to put data into a hash using my first field as the key. I'm still not familiar enough with hashes to add it. I know the below is wrong, but I think I'm close.
my %hash;
while ($connection->FetchRow()) {
my %dataRow = $connection->DataHash();
%hash($dataRow{Client_ID});
};