I\'m trying to manually execute SQL commands so I can access procedures in NuoDB.
I\'m using Ruby on Rails and I\'m using the following command:
Acti
For me, I couldn't get this to return a hash.
results = ActiveRecord::Base.connection.execute(sql)
But using the exec_query method worked.
results = ActiveRecord::Base.connection.exec_query(sql)