Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

53
votes
13answers
15k views

sqlite3-ruby install error on Ubuntu

I have the following error during sqlite3-ruby install: Building native extensions. This could take a while... ERROR: Error installing sqlite3-ruby: ERROR: Failed to build gem native ...
12
votes
2answers
7k views

Uninitialized constant Encoding with sqlite3-ruby on windows

On a new machine, installed ruby with the 1-click installer for windows. Installed rails 2.3.2 and all associated gems, then I installed the sqlite3 binaries (into the c:\ruby\bin folder). Lastly I ...
9
votes
7answers
6k views

Problem installing sqlite3-ruby!

I'm having issues installing the sqlite3-ruby gem on crunchbang linux. After googling the past few hours and following several people with the same problem, I still haven't gotten it to work. Here ...
9
votes
4answers
9k views

sqlite3-ruby can't make on rvm 1.8.7

Upgrading to Rails 3 by starting with RVM 1.8.7. OSX 10.5.8 Output: josh-crewss-macbook:~ joshcrews$ gem install sqlite3-rubyBuilding native extensions. This could take a while...ERROR: Error ...
8
votes
3answers
3k views

sqlite3 gem fails to install

I'm trying to install the "sqlite3-ruby" gem (or the "sqlite3" gem) on OS X 10.6. I'm using ruby-1.9.2 and I currently get the following: $ sqlite3 --version 3.7.4 $ sudo gem install sqlite3 ...
7
votes
2answers
1k views

SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL

I am getting the following error while trying to add a NOT NULL column to an existing table. Why is it happening ?. I tried rake db:reset thinking that the existing records are the problem, but even ...
5
votes
3answers
1k views

rake db:migrate produces “rake aborted! could not find table” error

I'm new to Rails and I'm building a simple project-tracking app for my employer. I've been developing the app on my Mac and pushing it to github. I just managed to clone my github repo to a windows ...
5
votes
2answers
551 views

gems: difference between sqlite3 and sqlite3-ruby?

I accidentally ran: sudo gem install sqlite3 instead of: sudo gem install sqlite3-ruby So now when I run gem list I get: gem list *** LOCAL GEMS *** sqlite3 (0.0.7) sqlite3-ruby (1.2.5) ...
4
votes
2answers
179 views

Is there are reason I select by a string columns which contains SHA1 hexdigests?

I have an invitations table which looks like this sqlite> .schema invitations CREATE TABLE "invitations" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL , "sender_id" integer , ...
4
votes
4answers
2k views

Rails 3 won't install sqlite3-ruby gem with rvm?

I'm trying out rvm, and installed ruby 1.9.2 and rails 3 with it. I need to re-install the sqlite3-ruby gem (since rvm keeps all gems separate for different versions of ruby). The problem is, when ...
3
votes
4answers
2k views

Sqlite-3 error while running ROR application

Hi When i try to run Ruby on Rails application.... i facing the following error symbol lookup error: ...
2
votes
1answer
55 views

Unexpected substitution of SQL placeholder in this ruby database query

Can someone explain what's happening here? It seems that the placeholding syntax in SQL statement string doesn't work as expected (or, to say it in a different way, it violates the principle of least ...
2
votes
1answer
87 views

Silence Rails schema load for spork

I'm running rspec on a rails 3.0 environment. We've just switched to using sqlite3 in memory database for tests. To get this to work, you need to load the schema each run. The trouble with this is ...
2
votes
3answers
374 views

Rails 3.1 app can't install sqlite3 gem because libraries are out of date

The latest SQLite3 library available on CentOS 5.6 and which is installed is version 3.3.6. It's my understanding that the sqlite3 gem needs version 3.6 or higher. How do I get my app to work with ...
2
votes
2answers
166 views

problem for SQLite db for jruby

I tried to use SQLite databse for my jruby project. When i tried to install sqlite3 gem getting the following error C:\tibbr\main\community_manager>gem install sqlite3-ruby Building native ...
2
votes
2answers
638 views

Issue with 'gem install sqlite3-ruby' on RHEL6

I'm attempting to install Ruby on Rails 3 on RHEL 6. I've 'yum install' sqlite and sqlite-devel (which is sqlite3 on RHEL6). As you can see, sqlite3.h does exist where it needs to be. 'gem install ...
2
votes
1answer
187 views

How do you add JOIN information to a rails seeds.rb file?

I'm trying to build a seeds.rb file to add an initial admin user to the database. I have a Users table and model, and a Roles table and model. I have a join table, roles_users to join the users role ...
2
votes
1answer
247 views

installing Sqlite3-ruby error

When I tried to install: gem install sqlite3-ruby it shows: Building native extensions. This could take a while... ERROR: Error installing sqlite3-ruby: ERROR: Failed to build gem native ...
2
votes
3answers
2k views

sqlite3-ruby gem can't find sqlite3.h on ubuntu

Trying to get Rails up on ubuntu, and I’m having trouble installing sqlite3-ruby – it apparently can’t find sqlite3.h. All the references I can find to the error suggest the problem is either: sqlite3 ...
2
votes
2answers
339 views

Problem installing sqlite3-ruby on cygwin

I'm getting error while trying to install sqlite3-ruby gem: gem install sqlite3-ruby-1.3.1.gem Building native extensions. This could take a while... ERROR: Error installing ...
2
votes
4answers
1k views

ruby1.9.1 - sqlite3 problem on ubuntu 9.10 x64 (no such file to load — sqlite3)

I have problem with sqlite3, because it is not working. irb(main):001:0> require 'sqlite3' LoadError: no such file to load -- sqlite3 from (irb):1:in `require' from (irb):1 from ...
1
vote
2answers
50 views

How do I use Ruby to extract data from a SQLite3 database and output it as static HTML?

I want to write a script that retrieves data from a local SQLite3 database and then formats that data into an HTML file. I'm not sure what "tools" to use, but I guess I'll need the sqlite3 gem and ...
1
vote
1answer
414 views

Cannot install sqlite3 gem on Mac OS X 10.5.8 (Leopard)

Using Mac OS X 10.5.8 (Leopard) ruby 1.9.3p0 gem version 1.8.14 sqlite3 Version 3.7.9 I also have installed Xcode 3.1.4 (not sure if this is used for installation of gems). I fetched the ...
1
vote
3answers
407 views

Installing Sqlite3 for Ruby (Mac OSX 10.5.8)

I am following this guide ATM - http://guides.rubyonrails.org/getting_started.html#getting-up-and-running-quickly-with-scaffolding When trying to create a database, I got: Morgans-Computer:blog ...
1
vote
1answer
141 views

unable to build sqlite3-ruby on dreamhost (debian lenny/5.0.8)

I'm not able to build sqlite3-ruby gem on dreamhost (trying to setup diaspora), I get following errors Installing sqlite3 (1.3.3) with native extensions /usr/lib/ruby/1.8/rubygems ...
1
vote
3answers
821 views

ActiveRecord::StatementInvalid SQLite3::SQLException: no such column: true:

I want to have @messages return @folder.messages where the value of column "deleted" is NOT equal to true. I'm not sure why this keeps throwing a SQLException. I guess I'm not formatting the deleted ...
1
vote
2answers
998 views

How do you completely remove sqlite3?

I tried doing this gem uninstall sqlite3-ruby gem uninstall sqlite3 Then I performed find ~/ | grep mkmf.log And it removed any sqlite3 directory I had on the system. But it still is in my bin. ...
1
vote
1answer
196 views

How to compile sqlite3, mysql and postgres driver for Rails 3.X on Mac OS X Leopard?

Is there a reason why all sqlite3, mysql, postgres driver compiles on Mac OS X Leopard when it is Rails 2.3.8, but can't compile when it is Rails 3.x? Theoretically, isn't it just some compile flags ...
1
vote
5answers
62 views

Drawing information from relational databases in Rails

I am trying to pull the name of the Artist from the Albums database. These are my two models class Album < ActiveRecord::Base belongs_to :artist validates_presence_of :title ...
1
vote
1answer
175 views

To get FTS3 support in SQLite3 using Ruby, do you have to manually compile sqlite?

I've got a web app where I'd like to user FTS3 functionality of SQLite3. I've got the SQLite3-ruby v1.2.5 gem installed. I'd like to have FTS3 support, and I know, due to trying to create an FTS3 ...
1
vote
1answer
229 views

Time fields in Rails coming back blank

I have a simple Rails 3.b1 (Ruby 1.9.1) application running on Sqlite3. I have this table: create_table :time_tests do |t| t.time :time end And I see this behavior: irb(main):001:0> tt = ...
1
vote
3answers
103 views

Why does Model.find behaviour in a deployed environment differ from that in a development enviroment?

Using Ruby on Rails combined with capistrano and git, I've run into an annoying problem.. I have a controller "people" with the index action that looks something like this: def index @people = ...
1
vote
5answers
5k views

Snow Leopard upgrade -> reinstalling sqlite3-ruby gem problem

I got ruby 1.8.7 (native compiled), rails 2.3.4, OSX 10.6.2 and also sqlite3-ruby. The error I'm getting when accessing the rails app is NameError: uninitialized constant ...
0
votes
1answer
29 views

In ruby on rails Is there a way to dictate the format of fields inserted into the database via Activerecord?

I'm inserting some strings (that look dates) into a sqlite3 database via my ActiveRecord and the database is altering the field and making it look like a date. For example: "4-2" => "2-Apr" #Not ...
0
votes
0answers
9 views

sqlite3 fts3 OR operator limited to 30 parameters?

I'm trying to use MATCH against a list of ingredients separated by the OR operator to see if they exist in a recipe. I can have up to 30 ingredients on the right hand side of the MATCH operator and ...
0
votes
1answer
16 views

Update action fire an insert query?

Hi i know it's silly but true i got this when i edit any entry. I have an expense model and an expense_line_item and a paid_line_item model, it is created properly when i create a new entry but on ...
0
votes
0answers
82 views

SQLite3 foreign key troubles with Ruby

I have a basic Ruby script unit testing foreign key support via a SQLite3 DB. It is pretty basic and I expected it to work. Obviously, it didn't. #!/usr/bin/env ruby require 'rubygems' require ...
0
votes
1answer
231 views

no such file to load — sqlite3/sqlite3_native

I am having trouble trying to run the following ruby script on OSX (Leopard). require 'sqlite3' database = SQLite3::Database.new( "new.database" ) database.execute( "create table ...
0
votes
2answers
114 views

trying to install sqlite3 gem on OS X snow leopard; seem to be missing some headers

I run the following command and am seeing the below issue... $ sudo gem install sqlite3-ruby OR $ sudo env ARCHFLAGS="-arch x86_64" gem install sqlite3-ruby Building native extensions. This could ...
0
votes
1answer
704 views

ERROR: Failed to build gem native extension when installing Installing sqlite3 (1.3.3)

I am trying to start up my first rails project. Im on Mac OS X 10.6.7, have Xcode4 installed, ruby 1.9.2, rails 3.0.1 When I type bundle install I get this error: ~/rails_project/first_app$ bundle ...
0
votes
1answer
91 views

Ruby On Rails Database

Whenever I run the command rvmsudo rake db:migrate (I need to use rvmsudo because I'm using rvm), the sqlite3 files generated are owned by root. ls -l db/*.sqlite3 Because of this, I keep on getting ...
0
votes
1answer
402 views

gem install sqlite3-ruby

When I try install sqlite3-ruby, I get # gem install sqlite3-ruby Building native extensions. This could take a while... ERROR: Error installing sqlite3-ruby: ERROR: Failed to build gem ...
0
votes
0answers
186 views

Rails db:migrate error — SQLite3::SqlException: near “[”INSERT“]”

Its friday afternoon and my head is going sideways. Im running a db:migrate in a rails project. Rails 2.3.11, ruby 1.9.2-p180 but am getting a syntax error. Oh the gem hairtrigger is being used for ...
0
votes
2answers
267 views

Ruby on Rails SQLite3::NotADatabaseException (file is encrypted or is not a database)

I am afraid something really bad happened while I was messing around with my RAILS app. It was working fine, and I am not sure what I did, but I get the following error: Started GET "/" for 127.0.0.1 ...
0
votes
3answers
550 views

Sqlite3 error message

Hey, I've recently been having trouble properly installing my Sqlite3 gem. I've already tried installing sqlite3, followed by sqlite3-ruby and I keep getting an error message. Can anyone tell me what ...
0
votes
1answer
100 views

sqlite3-ruby . error

rake aborted! no such file to load -- sqlite3/sqlite3_native :33:in require' <internal:lib/rubygems/custom_require>:33:inrescue in require' :29:in `require' i jus keep gettin this error . ...
0
votes
1answer
282 views

Wrong sqlite3.so architecture on Mac OS X

I'm trying to get Schuyler Erle's Ruby-based geocoder (https://github.com/geocommons/geocoder) up and running locally on Mac OS 10.6. Upon calling lib/tiger_import (available at above link) to import ...
0
votes
2answers
377 views

How to install ruby interface for sqlite3 in Mac snow leopard?

I tried to install it as below but it throws error :- "sudo gem install sqlite3-ruby" Building native extensions. This could take a while... ERROR: Error installing sqlite3-ruby: ERROR: Failed to ...
0
votes
1answer
348 views

Cannot use sqlite3 with ruby 1.9.2 and rails 3.0.0 on windows

I have first to explain a little bit my context, then the question: I have used Ruby on Rails now for 3 years with different applications, and upgraded from 1.2 up to 2.3.9. I want to upgrade to ...
0
votes
1answer
42 views

Can you connect to an SQL database and use the data from that database to update a table in SQLite3?

I am new to Ruby-on-rails and need to be able to build a Rake file that will connect to a corporate data source and then use the data to update a table in SQLite3. Is that possible? Should I be ...

1 2