'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
15 views

Install libpq-dev package error

I tried to install pg gem and I have had this warning: You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application. ...
0
votes
2answers
26 views

Cloudbees dev cloud + Postgresql + rubygems pg (native extension) how to use?

I want to use postgres in cloudbees dev cloud, I read this article: http://wiki.cloudbees.com/bin/view/DEV/PostgreSQL But, I run bundle, I got error: Installing pg (0.15.1) ....... ...
0
votes
1answer
16 views

Does db_link in postgres auto close connection when used with this format? How to auto close postgres dblink?

I have a query that connects to remote database and brings back results bit it in a function as shown below. CREATE OR REPLACE FUNCTION get_users() $BODY$ BEGIN RETURN QUERY SELECT c.user_id, ...
0
votes
2answers
35 views

Problems with belongs_to condition in model

I'm making personal money management app. There I have 2 models: Account and Transaction. Transaction has belongs_to :account and Account has has_many :transactions. When I had account_id column in ...
0
votes
1answer
100 views

Bundler tries and fails to install the pg gem, which is already successfully installed

I've got the pg gem installed: $ gem install pg Building native extensions. This could take a while... Successfully installed pg-0.15.1 1 gem installed $ gem list | grep pg pg (0.15.1, 0.14.1) ...
0
votes
1answer
24 views

Renamed model class still appearing in active admin menu

I had to rename model class in my ruby on rails app due to name clashing with other class sitting in lib directory. Everything is fine when I run app both in production and development env on my local ...
0
votes
1answer
72 views

How to check if prepared statement already exists in Ruby?

Using the PG Gem for Postgresql in Ruby, how would you check to see if a prepared statement already exists?
0
votes
1answer
109 views

error running gem install pg -v '0.15.1'

Running gem install pg -v '0.15.1' giving errors: Building native extensions. This could take a while... ERROR: Error installing pg: ERROR: Failed to build gem native extension. ...
0
votes
3answers
84 views

Rails 3, error installing pg gem

Tried to install pg gem I got the next error: alex@ubuntu:~/RubymineProjects/Tiger Skills$ gem install pg ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions ...
0
votes
1answer
40 views

PG::Error EOF detected on Heroku Cedar, rails 3.2.11

Having experienced a few periods of downtime, we've recently upgraded to a production environment in Heroku (Crane database plus 2 x web dynos) however we've seen no improvement. In fact reliability ...
-1
votes
1answer
72 views

Can't install the pg gem [closed]

On Mac OS X 10.6.8, I get the following error when trying gem install pg. Trying to push my Rails website to Heroku. A pretty standard install of Ruby 1.9.3p194. $ cat ...
0
votes
1answer
15 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: ...
3
votes
3answers
259 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
20 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
0answers
33 views

Rails apartment switch schema per session

I have an application, where every user has to have his own schema in postgres database. Now I use apartment gem, but it allows just to switch schema globally per whole application, not per every ...
0
votes
1answer
88 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
1answer
65 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
44 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
152 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
486 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
119 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
49 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
94 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
765 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
40 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
347 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
105 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
53 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 ...
1
vote
1answer
104 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
81 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
83 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
91 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
437 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
46 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
2answers
259 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 / ...
2
votes
1answer
128 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
161 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
124 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
158 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
58 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
148 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
247 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
601 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
24 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
118 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
159 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
228 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
64 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
129 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 ...

1 2 3 4