2020-06-01から1ヶ月間の記事一覧

【Herokuエラー】Detected sqlite3 gem which is not supported on Heroku:

はじめに Rails アプリを Heroku にデプロイしようとしたら remote: An error occurred while installing sqlite3 (1.3.13), and Bundler cannot remote: continue. remote: Make sure that `gem install sqlite3 -v '1.3.13'` succeeds before bundling. re…

【Railsエラー】Could not find gem 'rails-il8n (~> 5.1)' in any of the gem sources listed in your Gemfile or in gems cached in vendor/cache.

はじめに アプリケーションの文言を日本語化するために、「rails-i18n」というgemをインストールする際に下記のエラーが発生しました。 Could not find gem 'rails-il8n (~> 5.1)' in any of the gem sources listed in your Gemfile or in gems cached in v…

【SQL】サブクエリ(副問合せ)がNULLを含んでいた場合

はじめに NOT INまたは<>ALLで判定するサブクエリ(副問合せ)の結果にNULLが含まれると、全体の結果もNULLとなります。 データにNULLが含まれると、取得されるはずのデータが取得できなくなることがあるので、サブクエリの結果からNULLを除外する方法を調べ…