Hello! I have a rails app using a mysql. Now I need to configure it with sqlite. I change database settings in config/database.yml and Gemfile file and run rake db:create rake db:migrate and did not get any errors.
But in view a have a code <%[email protected]%> and get error SQLite3::SQLException: near "to": syntax error: SELECT COUNT(*) FROM "likes" WHERE ("likes".to = 1) in sqlite console sql query working with this syntax SELECT COUNT(*) FROM "likes" WHERE ("likes"."to" = 1) Why on mysql it's working, but not working in sqlite?How i can fix it? rails -v Rails 3.0.7 ruby -v ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0] sqlite3 -version 3.6.12 -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

