When running a mysql query with ActiveRecord with Class.connection.execute('query here')
, the result is an array, as opposed to a hash in postgres. This is tested with both mysql
and mysql2
adapters, even though the default for mysql2
is to return the query result as a hash.
How can I get ActiveRecord
to change the configuration options on the connection to return query results as a hash? Can I just not use ActiveRecord
for this and I should use the raw mysql2
client?