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
Reposting the answer from our forum to help others with a similar issue:
@connection = ActiveRecord::Base.connection result = @connection.exec_query('select tablename from system.tables') result.each do |row| puts row end