Tagged Questions
0
votes
1answer
288 views
Rails console can't open due to “Please install the postgresql adapter” error, in newly created app that doesn't use postgres
I'm running Rails 3.2.11, but this seems to happen in 3.2.10 and 3.2.9 for me as well. Essentially, I do
rails new sample_app
rails console
And this spits out:
...
5
votes
1answer
602 views
Postgresql table values don't match Ruby on Rails Active Record query results
I have a table named monthly_trips in Postgresql. There is a row with values id = 3 & al = 107.415. My problem is when I try to access the value of the "al" column in rails. Using the Rails ...
0
votes
1answer
116 views
My Rails console session went wrong and now my rspec tests fail?
I am using Postgres 9.1, Rails 3.1.3 and Ruby 1.9.3.
I tried some things out in rails console --sandbox and then I ventured to rails console.
On entering Employee.create!(a whole lot of data), I ...