0
votes
0answers
7 views

SQLException on db:test:load with Rails

I've been working on a small but somewhat complex Rails application with multiple has_and_belongs_to_many relationships. It's open source, and the code is here. Everything was working fine, but ...
1
vote
2answers
148 views

Could not find a valid gem install activerecord-sqlite3-adapter

I'm a beginner to Ruby. I follow the steps on http://rubyonrails.org/download and installed Ruby on rails and created a project called "Blog" by following the youtube tutorial. ...
1
vote
2answers
33 views

Installation of the sqlite3-ruby gem fails

whenever I try to install the gem: gem install sqlite3-ruby I get the following output: D:/Ruby/bin/ruby.exe extconf.rb checking for sqlite3.h... no sqlite3.h is missing. Install SQLite3 from ...
1
vote
2answers
50 views

Rails - Sqlite vs Mysql syntax error

I have the following query that is working good on Sqlite3 (dev env) but fails (SyntaxError) on MySQL (prod env). I have tried different resolution but I can't find where is the problem: data = ...
2
votes
1answer
51 views

Trouble setting up Rails, sqLite 3 won't install

Here's what happens when I try installing it. C:\Users\XXXX>gem install sqlite3 Successfully installed sqlite3-1.3.7-x86-mingw32 Parsing documentation for sqlite3-1.3.7-x86-mingw32 unable to ...
1
vote
1answer
663 views

cannot load such file — sqlite3/sqlite3_native (LoadError) in Ruby 2 running rails 3.2.11

I am getting the above error when trying to run rails s. bundle show sqlite3 produces c:/ruby/lib/ruby/gems/2.0.0/gems/sqlite3-1.3.7-x86-mingw32 (which means, gasp, I'm running it on a Windows XP ...
0
votes
1answer
39 views

Sqlite3 installed but says it's not

I'm going through a tutorial to install Rails. When I first try to use MacPorts to upgrade sqlite3 using 'sudo port upgrade sqlite3' the response I get is 'sqlite3 is not installed'; however when I ...
3
votes
3answers
969 views

Getting Ruby on Rails environment working and installing sqlite3

Trying to upgrade to the latest version of Ruby on Rails. I got ruby and rails installed ok (I think). C:\Users\benjaminw>ruby --version ruby 2.0.0p0 (2013-02-24) [x64-mingw32] ...
0
votes
2answers
356 views

Import CSV to existing sqlite database table

I've searched all over this forum for solution to the above problem, but everything I tried didn't work. Basically, i have a model Library, with corresponding libraries table in my sqlite3 database. I ...
0
votes
1answer
148 views

Can't make sqlite3 work on Ruby on Rails

I just installed ruby on my windows 7 computer. I installed rails and sqlite3 with the gem. I then made my app work on local BUT I still seem to have problems with sqlite3. When I try this: rake ...
0
votes
2answers
160 views

Importing CSV file into Sqlite3 - easiest way to deal with created_at, updated_at columns?

I have a CSV file I'm trying to import into Sqlite3 using the .import command. The db table has updated_at and a created_at columns, but my CSV file does not, so when I run the import I get an error ...
1
vote
2answers
42 views

Faking record id result in poor db performance?

I have modeled some data into a table, but privacy is a very important issue. Whenever I create a new record I look for an unused random 9 digit id. (This is to avoid anybody being able to infer the ...
0
votes
1answer
92 views

save hash to sqlite3 ruby

I have this small ruby script that collects data and then save them in a hash and then stores them in a sqlite db. The hash looks like this: @track = {:name => "Chris Brown", :song => "Sweet ...
0
votes
1answer
55 views

Ways pass to data between a C program and a Ruby on Rails application

I want to implement an algorithm that: takes database objects from a Ruby on Rails application as inputs, performs calculations on the inputs, queries the Rails database based on the calculations, ...
0
votes
0answers
73 views

sqlite3 db locked and no access with rails 3.2.8 app

Here is the error there was on our production server. The whole app is locked out and could not login. The error was from sqlite3 gem after ActiveRecord. After restarting nginx server, the db locking ...
0
votes
0answers
36 views

ActiveRecord::ConnectionNotEstablished trouble wihen deployong with capistrano

Im doing my first deploy with Capistrano to a Virtual machine running Ubuntu server 12.04. I build a small app and i am using sqlite3 as production database as well. I'm following this ...
0
votes
2answers
114 views

Installing sqlite3 gem is not working on my Linux Mint x64

I've found lots of these questions around, but none of the solutions given work. I also haven't seen x64 mentioned, so maybe that is related. The issue is this: Building native extensions. This ...
0
votes
0answers
70 views

Impossible to use rake in my rails project

Every time I try to use rake in my rails project it throw me the message below. I tried to re-install ruby, rails, rake, re-create the project, launch my rake db:migrate with sudo but nothing seems to ...
0
votes
0answers
80 views

Rails Database on Rackspace

Ive successfully deployed my app onto rackspace, but Im having massive problems in making the database work. I found a really good suggestion here: Capistrano Rails app SQLite3 Cannot open Database ...
2
votes
1answer
61 views

SQLite error on belongs_to/has_many association in Rails app

I have two models with the following associations: A user has many projects. A project belongs to a user. User model (user.rb): class User < ActiveRecord::Base has_many :projects ...
3
votes
1answer
903 views

Sqlite3 reference deploying simple heroku Rails aplication

I've got a problem deploying a very simple example rails app on Heroku. This app uses a db. In local (OSX) with sqlite3 there is no problem, but I can't push to Heroku because some lost reference to ...
1
vote
2answers
80 views

Rails 3 and SQLite communications concerning boolians

im using Rails 3.2.8 and SQLite 1.3.6 and im running into troubles changing boolian variables in the database SQLite translates "t" and "f" as true and false this function wont update the :approved ...
2
votes
1answer
226 views

After importing a csv file, extra rows are being created in my sqlite db table

I'm importing 17 csv files into my app via rake tasks. The other files will import fine and not create extra rows, but for some reason this file is creating about 60 empty rows in my database. The ...
1
vote
2answers
323 views

rails install pg - Can't find the 'libpq-fe.h header

$ sudo bundle install Result Fetching gem metadata from https://rubygems.org/........... Fetching gem metadata from https://rubygems.org/.. Using rake (0.9.2.2) Using i18n (0.6.1) Using ...
2
votes
1answer
411 views

Binary data inserted for `string` type on column `remote_ip`?

What is the meaning of Binary data inserted forstringtype on column ...? When loggin remote ip addresses in a SQLite table, there is a message in debug console: Started GET "/test?name=abcde" for ...
2
votes
1answer
215 views

Heroku installing sqlite3 even though it is not a dependecy

I am trying to deploy my app to Heroku, but it keeps getting rejected with the following output. waitup$git push staging master Counting objects: 4184, done. Delta compression using up to 4 threads. ...
4
votes
1answer
1k views

Rails: SQLite3::CantOpenException: unable to open database file

I'm trying to use delayed_job to schedule tasks using Sqlite3, and it looks like apache isn't able to read my production.sqlite3 file. Here's my database.yml: production: adapter: sqlite3 ...
1
vote
1answer
109 views

Sorting strings with numbers and text in Rails

In my database I have table with a name column containing grades, like 1. grade, 2. grade, and so on. When the numbers have reached 10 or more, the sorting doesn't work as I would like, as 10. grade ...
0
votes
0answers
297 views

How to refesh SQLite Database Browser on Mac? [closed]

I am using SQLite Database Browser 2.0b1 (Mac version) for my Ruby on Rails projects. It's a nifty little tool that shows the current state of my SQLite databases. However, one thing I've always ...
1
vote
1answer
143 views

Missing column error in acts_as_taggable_on gem with Rails 3 and sqlite3

I think I've found a strange bug in acts-as-taggable-on. Can anyone else reproduce this error? Starting with a bare Rails 3 project: ~ [13:57:32]: cd Development/ ~/Development [13:59:44]: rvm use ...
0
votes
0answers
203 views

SQLite3::NotADatabaseException (file is encrypted or is not a database) in production (Engineyard)

I am trying to parse a sqlite3 database in rails 3 (using sqlite3-ruby gem). The database to parse is coming from a file upload. Here is my controller code: require 'fileutils' require 'sqlite3' ...
0
votes
0answers
189 views

Rails 3.2 + minitest + sqlite3 :memory: = Fail

I'm unable to use the :memory: database with Rails 3.2, sqlite3, and minitest. I have the following in database.yml: test: adapter: sqlite3 database: ":memory:" and get the following error ...
0
votes
2answers
43 views

Rails SQLite Dev and Test database are the same. Why?

I inherited a Rails project where the (SQLite) Dev and Test databases are the same, as in the database.yml file. Are there any advantages to this? Why would anyone do this?
0
votes
2answers
88 views

Cannot run heroku db:push

I'm trying to push my database to heroku runnig command and have an error ~ heroku db:push Taps Load Error: no such file to load -- sqlite3/sqlite3_native ! You may need to install or update ...
0
votes
3answers
699 views

heroku push fails with the error “An error occurred while installing sqlite3-ruby (1.2.5)”

When I do git push heroku master I get the following message: An error occurred while installing sqlite3-ruby (1.2.5), and Bundler cannot continue. Make sure that `gem install ...
0
votes
1answer
131 views

rails : Ruby on Rails calculating “rank” of a join table

I have 2 tables (relationships many-to-many with sqlite3) : -User -Credit(with user_id & score) And I try to compute the rank of the user. To compute the rank of this user I need to find the SUM ...
0
votes
1answer
49 views

Rails 3 and SQLite - handling exceptions

I'm currently building a portfolio with a basic custom content management system and I'm having a problem with SQLite errors. As the majority of the pages on the site are created using the CMS they ...
0
votes
1answer
79 views

Rails : SQLite3::SQLException with has_and_belongs_to_many Association

I get a new problem with my application. I try to make a relationships many-to-many like this : http://guides.rubyonrails.org/association_basics.html#the-has_and_belongs_to_many-association Here I ...
1
vote
1answer
33 views

Posting the data from the 'content' tab of four different rows in sqlite3

I'm in need of some assistance with Ruby on Rails and Sqlite3. This is what I did four times: <%= Bullet.select(:content).order('random()').limit(1).collect { |b| b.content } %> But instead ...
0
votes
0answers
107 views

I have an error using the save method in ActiveRecord

I created a User model with attributes name and email. So to create users, I opened the rails console and used the sandbox. rails console --sandbox user1 = User.new( name: "example" , ...
0
votes
1answer
72 views

Error in all unit and functional tests after altering column names of a table

I renamed 3 columns of a table and suddenly ALL of my unit and functional tests throw the same error, that they cannot find the table with the old column names. Even the tests for the models that have ...
0
votes
1answer
270 views

Rename a column in sqlite3 database table? (rename_column)

I have by mistake given a column in my database a wrong name, so I wish to change it. I have run my: bundle exec rake db:migrate I am trying to rename my column with this command: ...
0
votes
4answers
1k views

sqlite3 and rails server with load error

I am using ROR in windows, I downloaded RailsInstaller and everything works fine until I call rails server The page is loaded with error "cannot load such file -- sqlite3" I guess I am missing ...
0
votes
1answer
263 views

Rails Server requiring restart to show changes

I'm currently learning Ruby on Rails with the help of the Book "Agile Web Development with Rails", but I have a problem with the first application. I created the app with rails new depot and ...
0
votes
1answer
375 views

Rails3 SQLite3 DROP TABLE CASCADE error

I have a project on Rails 3.0.2. Its rather big and working well with MySQL database. But when I try to run it with SQLite database there is an error during migrations: SQLite3::SQLException: near ...
0
votes
1answer
57 views

Persisted model via save method does not show up in sqlite3 database. Why?

i am new to RoR and probably miss something out. Can you give me an idea what is wrong? TestMethod in Unit Test test "create" do prices = [12,14,16] prices.each {|p| course = ...
0
votes
2answers
143 views

How to calculate and display values from variables in Rails

I am developing a web application with Ruby on Rails/Jquery Mobile. The SQLite 'Inventory' schema consists of existingfixture:string, replacementfixture:string, and quantity:integer. There are two ...
0
votes
0answers
419 views

I am getting an error when trying to run rake db:migrate

i keep getting this error, i have sqlite3 and the sqlite3 gem installed and i am running on ubuntu. can you please help? i am using Ruby 1.9.3p194 and Rails 2.3.14 > ...
0
votes
1answer
321 views

Heroku Application Error

Application Error An error occurred in the application and your page could not be served. Please try again in a few moments. If you are the application owner, check your logs for details. $ heroku ...
0
votes
1answer
514 views

Sqlite3: Failed to build gem native extension

I'm using Capistrano for the first time and ran into the following problem. My rails app is running on a VPS with CentOS Linux 6.0. * executing `bundle:install' * executing "ls -x ...

1 2 3