'pg' is the name of an extension for Ruby that provides access to libpq, the C application programmer’s interface to the PostgreSQL RDBMS.

learn more… | top users | synonyms

0
votes
1answer
14 views

How to fix PGError in rails for ActiveRecord?

I am trying to get the unique values in the column 'genre' in Rails. The commented out section works on localhost but in production I get a PG Error: ActiveRecord::StatementInvalid (PGError: ERROR: ...
0
votes
2answers
91 views

Error requiring pg under rvm with postgres.app

I'm using Postgres.app on OS X (10.8.3). I have modified my PATH so that the bin folder for the app is before all others. Rammy:~ phrogz$ which pg_config ...
0
votes
1answer
16 views

Not nil code that works for both sqlite3 and pg

I have a rails app running sqlite3 in development and pg in production, currently running on Heroku. I am getting an error on my heroku app. I have a column called 'archived' which starts out as nil ...
0
votes
1answer
62 views

Ruby 1.9.3-p392 and PostgreSQL

I created a new rails app with rails new app_name -d postgresql and I am failing to use any rails command (rails s, rails g controller ControllerName, etc etc). I am getting these errors: ...
0
votes
0answers
34 views

Postgres WARNING: errors ignored on restore: 59

I'm using the pg:transfer utility recommended by Heroku to push and pull databases. For example: heroku pg:transfer -f postgres://username:password@localhost/database-name -t ...
0
votes
1answer
37 views

How create postgres trigger in rails?

I have a table product(id,name) and table product_raiting(product_id,rate_type,rate). When I create new product, I need to create three raitings for this product. How can I add postgres trigger with ...
0
votes
2answers
99 views

Error install pg gem

I am getting the following error when trying to install 'pg' Any thoughts? I am pretty new to rails so I am not sure how to fix this issue. Davids-MacBook-Air:~ DavidStevenson$ install pg usage: ...
0
votes
2answers
209 views

Why does bundle ignore “gem 'pg'”? [closed]

Currently Working Not sure what happened. Built gemfile.lock on a linux box and moved it over. Had missing things, ran bundle install, worked. Bundle is ignoring my inclusion of the "pg" gem in my ...
1
vote
1answer
92 views

Problems with Heroku using Ruby on rails,

I'm sorry I know that lots of people had asked similar questions but in all the different answers I've seen there were no working ones. I'am curently following this tutorial : ...
0
votes
1answer
41 views

Does model_name.new() in ActiveRecord create only new records or update existing as well

I have a model that I use with active record in a ruby script below. Things like level_type, name, parent.id, and pipcode get assigned to the attributes of the model for entry into the levels table. ...
1
vote
2answers
74 views

Need to get usernames and passwords from database.yml file and pass into method in rake task

Currently, I am using the pg gem in my rails rake task which is perfect for what I want to do. I create a variable pg_conn and pass in the connection details to the PGconn.connect method. I just don't ...
1
vote
0answers
379 views

Error when installing pg 0.15.1 on os x

This is what happens when I try to install the latest version of Postgres gem on OS X Lion. $ gem install pg Upgraded http://rubygems.org/ to HTTPS Fetching: pg-0.15.1.gem (100%) Building native ...
0
votes
1answer
30 views

iterate over all values of a pg_conn query in Ruby

I have a ruby script where I need to retrieve all values from a database and do stuff with each one retrieved. Currently I am hard coding each retrieval, but this only works if there are 3 values ...
0
votes
0answers
189 views

could not find driver (ZF2 + Doctrine 2 + PostgreSQL). Wrong driver

application.config.php : 'doctrine' => array( 'connection' => array( // default connection name 'orm_default' => array( 'driverClass' => ...
0
votes
0answers
76 views

rake aborted! undefined method `isthreadsafe' for class `Module' (pg gem)

Still pretty new to rails and postgresql. Anytime I run a rake command I get the following trace: rake aborted! undefined method `isthreadsafe' for class `Module' ...
2
votes
1answer
1k views

'Could not find pg-0.12.2 in any of the sources' when running rspec

I'm working on building the twitter clone app in Hartl's Rails Tutorial. I cloned my git repo (https://github.com/stewartmccoy/rails_tutorial) and put code on to my personal computer, which had ...
0
votes
0answers
44 views

PostgreSQL group_by date and Rails

I'm new so excuse the phrasing. I've created a rails app that uses highcharts and postgresql. The chart shows how many times something has been shared on Facebook. It groups and counts all the ...
0
votes
1answer
79 views

Missing PG headers ( trying to install Postgres gem for Rails with Brew )

checking for libpq-fe.h... *** extconf.rb failed *** Seems to be the issue, it's from this tail: ERROR: Error installing pg: ERROR: Failed to build gem native extension. ...
2
votes
0answers
67 views

Failure using heroku pg:transfer

I'm trying to use heroku pg:transfer to transfer my local database to Heroku. Here is the command that I'm running heroku pg:transfer -f ...
0
votes
1answer
59 views

“pg” Ruby gem is throwing a “prepared statement already exists” error from Resque

Apparently the pg gem uses prepared statements for Postgres. I have seen fixes for Unicorn to ensure that each process uses it's own db connection like so: after_fork do |server, worker| ...
0
votes
1answer
61 views

PGconn.connect details of the hash needed in ruby pg gem

I would like to better document my code rather than having a statement like the below: pg_c = PGconn.connect("Main-my_db_lk", 5433, '', '', "report_center", "repozenter", "rp_23_xhg") How do I know ...
0
votes
2answers
247 views

insert statement in postgres for data type timestamp without time zone NOT NULL,

Database noob alert: I am trying to insert into a postgres table. The field that I would like to insert in is called make_date. The field type is timestamp without time zone NOT NULL, How do I ...
0
votes
2answers
41 views

What is the “-400”, “-500” following the date in Time.now in ruby and is date compitable with postgres date field?

Ruby and postgres question: I am wanting to insert the date from a Ruby script into a postgres database. The database date format is: 2013-03-13 17:08:51.207184-04 in postgres. BTW, what is ...
2
votes
1answer
165 views

Ruby on Rails / PostgreSQL - Library not loaded error when starting server

Heyo. I apologize in advance if this question has been answered in another thread. I've searched through the site but I didn't find an answer. However, the closest related issue was Ruby on Rails / ...
1
vote
0answers
94 views

pg_ext throws 'C extension initialized against invalid ruby runtime' on jruby (rvm)

I have a project working on Ruby-1.9.3-p392 and i try to load it with Jruby (jruby-head installed with rvm, it is currently jruby 1.7.4.dev (1.9.3p392)) All rake tasks fail with the following trace ...
0
votes
0answers
146 views

Ubuntu 12.10 can't install pg gem?

I have read every article I can find on this but seem to have the problem despite having tried the various recommendations. I am using RVM on Ubuntu 12.10. All my other gems are installing fine but ...
0
votes
0answers
123 views

Prawn not working in Production

Prawn is working fine in development environment. But in production im getting these logs and keeps looping without loading the app, ... 19x.xxx.xxx.xxx: Connecting to database specified by ...
1
vote
0answers
126 views

pg gem install fails saying version is too old

I am trying to install the pg(postresql) gem for ruby. I am receiving this error: postgres/9.2-pgdg/bin/64/pg_config Using config values from /location/to/install/postgres/9.2-pgdg/bin/64/pg_config ...
0
votes
1answer
44 views

Rails PostgreSQL - Changing socket name/location

I have changed the port of my PostgreSQL server, hence the socket it creates is no longer named ".s.PGSQL.5432". Is there a way to update/force Rails/the pg gem to change the socket name it looks ...
0
votes
1answer
130 views

Problems with Node.js and postgresql

I'm doing an app with express in node. I thought about different DBMS before coming up with the idea of using PostgreSQL (I haven't got any NoSQL experience) but it's bugging me out due to some ...
0
votes
0answers
194 views

Cannot install pg gem

I finally managed to get the 'pg' gem install after spending hours trying to figure out why it's not working... at the end I entered sudo env ARCHFLAGS="-arch x86_64" gem install pg -v 0.12.2 -- ...
2
votes
1answer
443 views

Installing gem pg for PostgreSQL, openssl libraries

I am using RVM with ruby 2.0.0. When I try to install pg gem for PostgreSQL I get the following response. gem install pg Building native extensions. This could take a while... ERROR: Error ...
0
votes
1answer
21 views

how to check difference betwen master and slave in slony replication?

I want to know how much the master lag behind the slave in teems of rows ? How can i see this ? I mean in which column ? I have tried to check sl_status table but i think it is not helpful. Thanks ...
0
votes
0answers
103 views

Can't install pg gem

I have the following problem when trying to install the pg gem. My OS is Ubuntu 12.10. I've already installed postgresql (via the installer from the postgres page). I've also done apt-get install of ...
0
votes
0answers
134 views

bundle install seems to use the Wrong postgres

so here is what it looks like when i try to run bundle install: Installing pg (0.14.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native ...
0
votes
0answers
192 views

no such file to load — aws/s3 (LoadError) no such file to load — pg (LoadError)

I have installed aws-s3 and postgres sudo gem install postgres Successfully installed postgres-0.8.1 1 gem installed Installing ri documentation for postgres-0.8.1... Installing ...
0
votes
0answers
58 views

Issue deleting single record using Heroku console

There was a record in my production DB on heroku which was causing a problem. I thought I would solve the issue by removing the record via heroku console which is what I did. After running a destroy ...
0
votes
1answer
101 views

Rails with PostgreSQL reconnecting multiple times per request

I recently encountered a problem where Rails is dropping connections to my PostgreSQL causing multiple reconnects per request, significantly slowing down requests. I am currently running everything ...
0
votes
0answers
64 views

Issue with migrating tests from SQLite3 to PostgreSQL

Have two computers, with same app on both. One runs SQLite3, other one runs PostgreSQL. All Cucumber tests are passing on SQLite3 PC. But Postgres PC fails when it comes to relations between models. ...
1
vote
1answer
201 views

ERROR: Error installing pg: [duplicate]

Possible Duplicate: Unable to install pg gem on ubuntu - Can’t find the 'libpq-fe.h header Here is the error while trying to do bundle install Building native extensions. This could ...
0
votes
1answer
72 views

pg gem error with Ruby on Rails

I'm on Mac OS X 10.8.2. I install Ruby+RVM using the RailsInstaller, so I am currently on ruby-1.9.3-p194. My application uses Rails 3.2.11. When I run bundle install, here's the error I see: ...
0
votes
0answers
58 views

How to make ActiveRecord derived class to try reconnect when connection lost

I have class that derived from ActiveRecord::Base which I use it as model for remote resource. It looks like that: class User < ActiveRecord::Base establish_connection :remote_db ...
2
votes
1answer
314 views

Not able to install pg gem on Ubuntu 12.10

I am using Ubuntu 12.10 64-bit and I have following packages installed : dpkg --get-selections | grep postgre output: postgresql postgresql-9.1 postgresql-client postgresql-client-9.1 ...
0
votes
1answer
40 views

Modifying ruby code to work with Postgresql

I was previously using sqlite3 for my ruby code and it worked fine for the following code def existsCheck( db, id ) temp = db.exec( 'SELECT 1 WHERE EXISTS( SELECT 1 FROM Products ...
1
vote
0answers
156 views

PostgreSQL installation with existing Ruby on Rails app

I am on Mac OSX lion and am new to Ruby on Rails programming, so bear with me. I'm trying to work on a teammates' Ruby on Rails app, but it requires that I have PostgreSQL installed. I installed it ...
1
vote
1answer
106 views

Intermittent PostgreSQL error: missing FROM-clause

I have a Rails app running on Heroku which intermittently throws Postgres 'missing FROM-clause' errors from UPDATEs executed by a Rake task. An example UPDATE statement is: UPDATE ...
1
vote
3answers
2k views

Postgresql adapter (pg): could not connect to server

I get this error every this I run my Rails app (It cannot connect to my local Postgresql) /Users/leonardo/.rvm/gems/ruby-1.9.3-p362/gems/activerecord-3.2.11/lib/ ...
0
votes
1answer
52 views

Not able to update my foreign key in the new method,using Devise for Users Table

I have Two models Users and Profiles ( Users is from devise ). A user can have many profiles , so i created a migration to add user_id to Profiles. class Profile < ActiveRecord::Base belongs_to ...
0
votes
1answer
626 views

Error occurred while installing pg (0.14.1) [closed]

Trying to deploy my code to heroku. I changed the gemfile line 'gem sqlite' to 'gem pg' and then ran bundle install-- which failed. Then I tried installing pg but this is the error that comes up. ...
0
votes
2answers
176 views

Error with 'pg gem' installation when running 'bundle install'

I'm suddenly running into this issue when running 'bundle install'. Everything seems to be installing correctly, but then I run into an issue with 'pg', as so many others seem to do. As the message ...

1 2 3