Tagged Questions
0
votes
0answers
29 views
Why is PostgreSQL+Activerecord giving me the table name around the results of my query?
I'm currently writing a simple Sinatra+ActiveRecord+Angular app. I have SQLite on my development computer, and per recommendations have been pushing to heroku regularly to catch production bugs early ...
0
votes
0answers
274 views
Using Sqlite3 test database and Postgres dev/production database in Rails
I currently have a rails project which I deploy to a production server which uses a postgres database. I develop my rails project in Windows, which means that if I want to test locally, I have to ...
0
votes
1answer
121 views
Rails Heroku database missing data
I'm new to Rails and Heroku.
I don't partly understand system of databases (testing, production, development).
I created two Rails apps. First with Rails' default sqlite db and second with ...
1
vote
1answer
154 views
Why can't my app modify development postgresql database after migrating from SQLite?
I switched my development database from SQLite to postgresql. My app worked in both development and production (Heroku, postgresql) but now I cannot modify, delete or create records in the new ...
0
votes
0answers
137 views
Converting postgresql to sqlite3 for app titanium on heroku
I have written a web service which acts as a simple CRUD to maintain an sqlite3 database. I had envisioned that this database could then be downloaded via the webservice from an iPhone app developed ...
0
votes
3answers
2k views
rake aborted! no such file to load — sqlite3
I've set up a new rails3 app and my gemfile is below
source 'http://rubygems.org'
gem 'rails', '3.0.0'
gem 'nifty-generators'
gem 'pg'
gem 'authlogic'
gem 'jquery-rails'
gem "mocha", :group => ...