Please install mysql adapter 'gem install activerecord-mysql-adapter'

前端 未结 16 1523
挽巷
挽巷 2020-12-28 12:23

I\'m having trouble finding a solution to this problem. I\'m getting the error:

Please install the mysql adapter: \'gem install activerecord-mysql-adapter\'
         


        
16条回答
  •  难免孤独
    2020-12-28 12:59

    You want to install the mysql2 gem.

    Really, you should probably add it to your Gemfile:

    gem "mysql2"
    

    And then install your gems with bundler:

    bundle install
    

提交回复
热议问题