PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

रेल 3.1 - हेरोकू को धक्का देना - पोस्टग्रेस एडाप्टर स्थापित करने में त्रुटियां?

विकल्प 1:

pgजोड़ें आपके Gemfile . पर लेकिन इसे स्थानीय रूप से स्थापित करने का प्रयास करना छोड़ दें।

$ 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

विकल्प 2 (डेबियन/उबंटू):

pgजोड़ें आपके Gemfile . पर लेकिन पहले पूर्वापेक्षाएँ स्थापित करें।

$ 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostgreSQL में CSV फ़ाइल कैसे आयात करें

  2. .sql फ़ाइल पोस्टग्रेज में स्क्रीन पर प्रिंट करना

  3. मैं postgresql में अपनी क्वेरी से न्यूनतम, औसत और अधिकतम कैसे प्राप्त करूं?

  4. क्या एक पोस्टग्रेज UNIQUE बाधा एक सूचकांक का संकेत देती है?

  5. PostgreSQL डेटाबेस कॉलम से केवल संख्यात्मक मान लौटाएं