sql >> Databáze >  >> RDS >> PostgreSQL

Rails 3.1 - Pushing to Heroku - Chyby při instalaci postgres adaptéru?

Možnost 1:

Přidejte pg do vašeho Gemfile ale přeskočte pokus o jeho místní instalaci.

$ cat Gemfile
...
group :production do
  # gems specifically for Heroku go here
  gem "pg"
end

# Skip attempting to install the pg gem
$ bundle install --without production

Možnost 2 (Debian/Ubuntu):

Přidejte pg do vašeho Gemfile ale nejprve nainstalujte předpoklady.

$ cat Gemfile
...
group :production do
  # gems specifically for Heroku go here
  gem "pg"
end

# Install the pg gem's dependencies first
$ sudo apt-get install libpq-dev
# Then install the pg gem along with all the other gems
$ bundle install


  1. Jak najít duplicitní hodnoty v tabulce SQL

  2. Použití CONTINUE v smyčkách k obnovení řízení v Oracle

  3. Použití klauzule IN s řetězcem odděleným čárkou z výstupu funkce replace() v Oracle SQL

  4. PDO + MySQL a nefunkční kódování UTF-8