I'm learning ruby and ruby on rails and I've a question :
I would like to know if I can use the select method on a pgresult.
This is my code :
connection = ActiveRecord::Base.connection()
allinfosql = "SELECT applications.appli_name, folders.folder_name, folders.is_obsolete, strategies.strategy_name
FROM applications, folders, strategies, folders_strategies
WHERE strategies.id = folders_strategies.strategy_id
AND folders_strategies.folder_id = folders.id
AND folders.application_id = applications.id
ORDER BY applications.appli_name, folders.folder_name ASC"
@allinfos = connection.execute(allinfosql)
I tried to do this
test = @allinfos.select {|row| row['appli_name']="SOME_VALUE"}
but the result is test is equal to @allinfos
Thanks for your help