Getting column names from a record set

I'm trying to get the column names associated w/ this record set:

account_all = Account.find(:all)

Since account_all is an array - how do I get the names?

Account.column_names

-philip