Tagged Questions
0
votes
0answers
6 views
Trouble with sqlite3 ruby 2.0 on Windows
I'm a newbie to programming, with ruby/rails successfully installed on my (mac) home computer. I'm trying to get ruby 2.0.0p195 (and Rails) set up on Windows at work (Windows 7, 32bit) and I'm failing ...
0
votes
0answers
28 views
How to save tweets from TweetStream with SQLite3 and Ruby
I am very new to ruby and RoR. I would like to save incoming tweets that are currently being displayed on my terminal. Could you explain why the tweets are not being saved?
I run " ruby ...
0
votes
1answer
18 views
Unable to load sqlite3 gem on Ruby 1.8.7 that is controlled by RVM
I tried to load sqlite3 library in Ruby 1.8.7 that is controlled by RVM. But I can't.
Situations are following
watanabe@linux:~$ rvm use 1.8.7
Using /home/watanabe/.rvm/gems/ruby-1.8.7-p371
...
0
votes
1answer
37 views
Rails :uniqueness validation not finding previous records
I'm having a bizzarre glitch, where Rails does not validate the uniqueness of an attribute on a model, despite the attribute being saved perfectly, and despite the validation being written correctly.
...
0
votes
3answers
73 views
Selecting record by a range of months
I have a table with a start_date and end_date for each row. end_date can by of a different year than the start date.
I need to select all records that overlap an input months range.
For example: ...
0
votes
2answers
39 views
sequel adapter is missing by deploying a database to heroku
I'm trying to deploy my app on heroku. But everytime I try to push my database, I get the following error:
heroku db:push
Sending schema
Schema: 100% ...
0
votes
2answers
40 views
Export content of a sqlite3 table in csv
I have a ruby script that generates a sqlite3 database.
I want to be able, inside the ruby script to generate an output.csv file containing one of the database table.
Is there a way to handle that ...
2
votes
0answers
111 views
Where is sqlite3_native.rb in Windows with Ruby 2.0?
Using Ruby 2.0 x64 on Windows. Installed sqlite3 gem by downloading the sqlite3 autoconf sources and compiling. Then I did a gem install sqlite3 --platform=ruby .... However, now when I run rails ...
2
votes
2answers
576 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. ...
2
votes
2answers
58 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 ...
0
votes
1answer
20 views
Selecting multiple user defined functions in sqlite3
I have two User Defined Functions (UDF) defined in ruby for an sqlite3 db. The functions are called 'distance' and 'bearing' and they each work if used separately but if I do:
db.execute( "select ...
2
votes
1answer
87 views
What is the correct way to setup database with DataMapper and Sinatra on production server?
From the DataMapper document, I think there are at least four functions need to be called to have database setup:
DataMapper.setup(:default, 'sqlite:///path/to/project.db')
DataMapper.finalize
...
0
votes
1answer
48 views
ruby/ssh/sqlite3 shell escaping
I need a line/block of ruby code that does the following:
starts an ssh shell to a particular user/host: dev@localhost
within that ssh shell start a sqlite3 session on a given file: ...
0
votes
0answers
66 views
Cannot install dm-sqlite-adapter on Mac OSX
I am trying to go thru this Sinatra tutorial but get stuck in the early stage. When I wrote a simple file to create a database it pop out error as
LoadError: cannot load such file -- ...
1
vote
1answer
1k 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 ...
1
vote
1answer
2k views
error on rails server - cannot load such file — sqlite3/sqlite3_native (LoadError)
I have installed ruby 2.0 using rubyinstaller, devkit and rails 4.0 beta (all 32 bit) on my 64 bit windows (because ruby weirdly misinterprets 64 bit processor to be a 32 bit)
I have added sqlite3 ...
4
votes
3answers
2k views
How do I install sqlite3 for Ruby on Windows?
Being really new to Ruby/Rails, and after attempting to resolve the issue myself this weekend I'm making an attempt to seek advice here.
I have a complete Ruby/Apache/Passenger setup done on FreeBSD, ...
0
votes
1answer
86 views
Ruby on Rails - How can I resolve this 'rake db:create' error?
I am trying to get a simple tutorial app up and running with Rails, but have run into this problem almost right away. I create the new ruby app, cd to the directory and run rake db:create. I get the ...
0
votes
1answer
160 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 ...
3
votes
1answer
87 views
SQLite3 “forgets” to use foreign keys
I'm using Ruby with SQLite3 and my attempts to use foreign keys in Sqlite3 were unfortunately not successful. According to sqlite3 --version, version 3.7.13 is installed. As far as I know, Sqlite3 ...
0
votes
0answers
41 views
Method to model a hash of arrays in sqlite database
I have a hash of arrays in a script I wrote where each hash key is a URL and the array is full of URLs. In English I am modeling a set of pages with many links on them. I don't know if each page ...
0
votes
1answer
65 views
SQLite3 auto increment value of the last updated item
I created my own SQLite3 library and it works fine.
Now I have some trouble finding out the auto increment values of entries.
My entry has an auto_increment value called id, it is not set until I ...
3
votes
1answer
172 views
Improve performance of Ruby script processing CSV
I've written a Ruby script to do the following:
Read a very large (2GB/12,500,000 lines) CSV into SQLite3
Query the db
Output results to a new CSV
In my mind, this seems to be the easiest and most ...
2
votes
1answer
97 views
Ruby on Rails server not reflecting changes to database records until restart
If I open the Rails Console and create a new Widget:
>> widget = Widget.new
>> widget.name = "Whatever"
>> widget.save
The Widget saves without errors. However, when I run:
...
0
votes
2answers
120 views
How to optimize this long running sqlite3 query for finding duplicates?
I've got this rather insane query for finding all but the FIRST record with a duplicate value. It takes a substantially long time to run on 38000 records; about 50 seconds.
UPDATE exr_exrresv
SET ...
0
votes
1answer
42 views
Modifying ruby code to work with Postgresql
I was previously using sqlite3 for my ruby code and it worked fine for the following code
def existsCheck( db, id )
temp = db.exec( 'SELECT 1 WHERE EXISTS(
SELECT 1
FROM Products
...
0
votes
1answer
388 views
Can't create a new Rails application. Sqlite3 won't install
Error message:
Installing sqlite3 (1.3.7) with native extensions <br>
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.<br>
...
0
votes
1answer
103 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
39 views
sqlite3/data_mapper always saves time as 00:00:00 when using rspec only
I have a peculiar issue involving saving time using data_mapper and sqlite3 and rspec
if I run the spec below I get this failure report
# expected: 2013-01-04 07:30:00 +1100
# got: ...
0
votes
1answer
56 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
1answer
45 views
Turning off logging output in activerecord sqlite3 adaptor in ruby
I use the ActiveRecord-gem for accessing a sqlite3-database, all without Rails. I use it like this:
ActiveRecord::Base.establish_connection(
:adapter => "sqlite3", :database => name_file )
...
0
votes
0answers
46 views
Rails Models to CoreData Models [closed]
I was creating a iOS app for my rails website and I couldn't help but notice that CoreData models are very similar to rails models. Is there some sort of script for automatically generating CoreData ...
0
votes
2answers
102 views
How do I put a Ruby function into a SQLite3 query?
I have a function which I need to put into a SQLite3 query.
I have the following method:
def levenshtein(a, b)
case
when a.empty? then b.length
when b.empty? then a.length
else [(a[0] ...
0
votes
0answers
153 views
rake aborted! no such file to load — sqlite3 rake aborted! invalid meta-code syntax:
This is my 1st RoR application
Ruby version = 1.9.3p125
Rails version = 3.2.9
Gem version = 1.8.16
I'm trying to create a simple application getting values from text boxes and radio ...
2
votes
1answer
104 views
Surveyor Gem checking results from completed surveys
I have got small problem. I have installed Surveyor gem. I've made a rails aplication on my computer, and when entering: http://localhost:3000/surveys I can answer on my surveys.
Adding new surveys is ...
0
votes
2answers
80 views
string compare in Ruby not working
I'm not sure what is going on here. I need to run a string compare on two variables that are Times. One variable is a Time object using the .mtime function. The other variable is taken from a sqlite3 ...
0
votes
1answer
46 views
ActiveRecord is showing wrong column defaults
This is my first time using ActiveRecord in a non-rails application, and I'm running into a problem. ActiveRecord is able to figure out the columns I have in my sqlite3 database, but it can't figure ...
1
vote
1answer
281 views
Rails SQLite3 duplicate column - Treehouse Tutorial
I've just started a Treehouse tutorial working on a Simple Ruby App. To give context, I previously had to delete and start over on this project, which I deleted the main app folder and started over.
...
3
votes
1answer
142 views
Running rake db:seed isn't loading from seeds.rb
I'm trying to seed a set of football teams and football positions, and rails is strangely simply not doing it.
rake db:seed --trace
** Invoke db:seed (first_time)
** Execute db:seed
** Invoke ...
0
votes
3answers
167 views
Error on “rails new” command (using rbenv)
I have rbenv installed, ruby, and rails installed, but the command to create the new rails project is causing an exception around sqlite.
rails new first_app
.
.
.
Using sass (3.2.3)
Using ...
0
votes
2answers
785 views
Could not find gem 'sqlite3 (>= 0) ruby'
I am learning Ruby on Rails and I followed the installation of RVM and Rails from Ryan Bigg's blog and the Agile Wed Development book. This has worked previously on my PC at home, but at work it gives ...
4
votes
1answer
381 views
sqlite3_native.so: [BUG] Segmentation fault
I'm running into this sqlite3 issue and can't figure out why ; I browsed this forum for many hours and could not find a similar issue reported.
I'm using ruby 1.9.3, but the error message seems to ...
2
votes
1answer
104 views
require 'sqlite3' fails after gem install sqlite3
# gem which sqlite3
/usr/lib64/ruby/gems/1.8/gems/sqlite3-1.3.6/lib/sqlite3.rb
# irb
irb(main):001:0> require 'sqlite3'
LoadError: no such file to load -- sqlite3
from (irb):1:in `require'
...
1
vote
2answers
226 views
Getting error on using rake db:create command (Ruby on Rails)
I have just started with ruby on rails, have made a new rails project folder.
Now I am trying to use rake db:create command but am getting the following error.
Please help.
NOTE: Gem.source_index is ...
3
votes
1answer
47 views
Rails App for Support Team With Two Databases
I've looked at some answers on SO and looked up some documentation but most of what I've found is geared towards querying multiple databases with similar data (i.e. replicated dbs or different ...
0
votes
0answers
36 views
Ruby SQlite3 driver not saving data with webrick
My problem is rather strange. I am using the same code via pipe and WEBrick server. With pipes, it works as expected and data gets stored into the sqlite3 database, while with WEBrick it just saves ...
0
votes
0answers
88 views
Stripping HTML with Ruby on Rails (UTF-8 Encoding Error)
I am trying to sanitize some html. I can save the html block to the db, but when I try to strip_tags from it first, it explodes with "ArgumentError: invalid byte sequence in UTF-8
".
From what I can ...
2
votes
1answer
216 views
creating sqlite database with ruby takes too long time
Im transfering txt files into a sqlite3 database using sqlite-ruby, each txt file is about 3,5 MB which ruby reads really fast, but populating the database takes more than 10 minutes per file. I don“t ...
1
vote
1answer
907 views
gem install sqlite3 gives error - sqlite3.h is missing
(Ubuntu 12.04)
gem install sqlite3
gives:
$ gem install sqlite3
Building native extensions. This could take a while...
ERROR: Error installing sqlite3:
ERROR: Failed to build gem native ...
1
vote
0answers
423 views
rake db:migrate doens't create the database or tables
I am learning sinatra, I'm using the sinatra-activerecord gem to build an app that uses a database.
Here is my migration
class CreateShortenedUrls < ActiveRecord::Migration
def up
...


