in reply to fetchrow_hashref Not returning Dates

Since you don't show the code, I can only assume that perhaps you didn't alias the columns to names. In MS SQL parlance, something like:

select convert(char(8),getdate(),112) as NamedDate

Since the fetchrow_hashref uses column names as keys, missing column names could be the problem...

...roboticus