sql >> Databasteknik >  >> RDS >> PostgreSQL

rake avbruten! Gem::LoadError:Specificerad 'postgresql' för databasadapter

Vänligen ersätt nedanstående

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'
  gem 'sqlite3'
  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '~> 2.0'

  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
end

genom detta

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'
  gem 'pg'
  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '~> 2.0'

  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
end

För utveckling och test behöver du gem pg för postgresql-adapter istället för gem sqlit3



  1. Hur man omvandlar resultaten av en SQL-fråga till en HTML-tabell med specifikt format

  2. Hur man analyserar aktiviteten i en databas i SQL Server

  3. Välj från en kombinerad vy där sammankopplingen inte fungerar?

  4. Hur man stoppar en pågående mysql-fråga