I had the same issue and fixed it by removing hard-coded references to SQLite in this file: lib/tasks/upgrade_instiki.rake
... # The following will not work on a non-SQLite installation db = SQLite3::Database.new( "db/production.db.sqlite3" ) db.execute( "select * from webs" ) do |row| ... I just deleted the entire task and left the file empty, as I currently have no need to upgrade. I'm guessing you could just replace the reference to SQLite with your database of choice if you needed this rake task. I'm happy without it. -Ben Ridout -- 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.

