Aplication fails when you have any view in your database.
Can you change file database.rb, recompile and upload the exes?
You must change the line 14 for this:
result = database_handle.execute("SELECT table_name FROM information_schema.tables WHERE table_schema = '#{@name}'
AND upper(table_type) <>'VIEW'")
This modification avoid the wiew comparation.
Thanks! |