The low level SQLite3 library for Ruby. This should only be used for questions about using the low level interface directly.
2
votes
1answer
62 views
Load Error - Using MySQL with Ruby on Rails
I have been trying to use SQL with Ruby on Rails for quite sometime now and cannot seem to make it work.
I've pretty much given up on SQLite, so my focus is now on MySQL. I have fully installed the ...
0
votes
0answers
45 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 ...
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 ...
0
votes
1answer
30 views
Creating database for an iOS application
I'm coding an application for iOS. Which approach do you think is better: creating tables (create table foo) and everything at once, or only create the tables when it's necessary (only when the user ...
1
vote
1answer
58 views
can I join two join resources together?
The way I have implemented it, it would appear not.
In data_mapper terms - I have a join resource Entry, that joins Driver, Team and Season
I have a join resource Race that joins Track and Season
I ...
0
votes
2answers
117 views
JRuby and SQLite3
I'm trying to make work JRuby and SQLite3 with the following gems:
bouncy-castle-java (1.5.0146.1)
bundler (1.3.2)
dbd-jdbc (0.1.6 java)
dbi (0.4.5)
deprecated (2.0.1)
...
0
votes
1answer
61 views
Ruby on rails, the ways to speed up search in database
I have the table products with following fields:
code - string,
id - integer
My table has over 5 million rows.
In the model I use code:
find(:all, :conditions => ['code = ?', "#{search}"])
It ...
0
votes
2answers
141 views
How to install ROR to ubuntu 12.04 ? Getting error with sqlite3
I'm new in ROR. So when I'm trying to install ROR.
when I try to start rails(rails s) I get such error:
Could not find gem 'sqlite3 (>= 0) ruby' in the gems available on this machine.
Run ...
0
votes
2answers
50 views
Sqlite3 in ruby on rails and cmd
I have a table with name buildings and I want to drop it because i forgot a column.
In cmd I go to the folder and type "sqlite3" then ".tables" and nothing shows me.
why that? and what can i ...
1
vote
1answer
237 views
testing with rspec gives error: 'Please install the sqlite3 adapter' - railstutorial.org
Hi i got the same Problem like this guy: Ruby Guard questions - 'Please install the sqlite3 adapter' - railstutorial.org
Executing "bundle exec rspec spec/requests/static_pages_spec.rb" gives ...
0
votes
1answer
70 views
How can I resolve the DataObjects::ConnectionError when running with data_mapper (Ruby 1.8.7)
When I run this code
require 'rubygems'
require 'data_mapper'
require "sqlite3"
DataMapper::setup(:default, "sqlite3://#{Dir.pwd}./prod.db")
class Person
include DataMapper::Resource
property ...
1
vote
0answers
283 views
gem install sqlite3 -v '1.3.7'
when i try to install the sqlite3 with this - > gem install sqlite3 -v '1.3.7'
this errors appears:
Building native extensions. This could take a while...
ERROR: Error installing sqlite3:
...
0
votes
1answer
38 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
2answers
70 views
Rails Scaffolded reference wont save due to mass-assign restriction
I'm brand-spankin'-new to rails, so forgive me if this is a stupid question -- i simply cannot piece together enough answers to tell if i started incorrectly. Here goes.
i created everything related ...
0
votes
1answer
105 views
How to: Single Table Inheritance in DataMapper?
I'm learning Sinatra (1.3.2) and chose to use DataMapper (1.2.0) as ORM and an in-memory SQLite (1.3.6) DB to start.
Two models, Books and Downloads, are sharing most attributes, so I looked into ...
0
votes
2answers
96 views
Rails database ID number not being updated with destroy call
I'm new to rails so maybe the record id is not updated on destroy.
I used rails scaffold to generate my MVC for a products page. When I add an entry to my data base through my products/new page it ...
0
votes
1answer
194 views
RailInstaller Rails server todo fails because of sqlite3
I'm trying to make the Rails server work, using RailsInstaller, which I downloaded at:
http://railsinstaller.org/
I executed all without any problem, and the server starts properly at:
...
1
vote
1answer
67 views
Something was wrong when insert Record with false value in rails 3.2
Recently I have started to learn Rails.
Now, I'm implementing the Friendship relation in my own project. And here is the code some thing like that (some of them was collected from Internet)
class ...
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'
...
-1
votes
1answer
104 views
No write permissions when trying to install gem in Ubuntu 12.04
I am trying to run this command
gem intstall sqlite3-ruby -v 1.2.5
on Ubuntu 12.04 but I keep getting this error:
you dont have write permissions into the /var/lib/gems/1.9.1 directory
This ...
0
votes
1answer
160 views
syntax error when attempting to use bind vars in SQL queries in Ruby
I am using sqlite3 and attempting to pass bind variables into SQL statements in a command line application that I'm attempting as a replication of http://www.pangloss.com/seidel/shake_rule.html . ...
1
vote
2answers
187 views
How do I import a CSV file into an SQLite database with the sqlite3 gem for Ruby
Here's an example of my .CSV file:
column1,column2
data,moreData
foo,bar
cats,dogs
Using Ruby and the sqlite3 gem, is there a way to make an SQLite database and import the .CSV data into it?
0
votes
1answer
191 views
Sqlite3 library won't open after 250 inserts
I'm trying to insert a large amount of information into a Sqlite3 database using a ruby script. After 250 db_prepare_location.execute's to do this, it stops working saying:
...
0
votes
2answers
71 views
Pulling 4 random ID's (rows) from a Sqlite table and posting the data on a separate page in Ruby on Rails?
I know the title is ridiculously long, but I'm in need of some assistance with Ruby on Rails and Sqlite3.
I had originally thought doing something like 4.times { (0..??).to_a.shuffle } would print a ...
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" , ...
2
votes
1answer
276 views
I have Rails error with save method in ActiveRecord
I found this Error when call save method
My Rails Envi: Rails 3.2.5, sqlite 3.7.12 (in GemFile 1.3.6), latest ActiveRecord
Thanks You in Advance.
2
votes
1answer
515 views
Rails 3.2.4 SQL query is caching results on find(:all)
I not total sure if this system is caching the data but it has some of the charcteristics of caching.
Basicly I was messing with rails 3.2.4 and the system started to not display some of the ...
0
votes
1answer
639 views
Why is apt-get install libsqlite3-dev giving me a 404 error?
I'm trying to install a sqlite3 gem using bundler and am getting the common Failed to build native gem extensions error. I'm trying to install the necessary files to fix this and successfully ...
0
votes
1answer
263 views
Location of Sqlite databases in OSX
Im learning Ruby on Rails 3 and would like to see the db structures created by various Scaffold commands in Sqlite3 in order to understand more the process.
In OSX Snow Leopard, entering:
which ...
0
votes
1answer
585 views
Capistrano Rails app SQLite3 Cannot open Database
I've managed to get a Rails app deployed with Capistrano to a server running NGinx & Passenger. On deploy I was getting the "We're sorry, something went wrong" message & was rather confused as ...
1
vote
1answer
254 views
Error installing gem sqlite3 - centos5.6
I'm trying to install the sqlite3 gem for ruby on rails and am getting this error... I've already successfully installed sqlite3 via yum. Thanks in advanced for any help!
Building native extensions. ...
4
votes
1answer
137 views
Where are the initialize methods for SQLite3::Database and SQLite3::Statement
I am an experienced programmer learning Ruby (and liking it a lot).
I'm working on setting up a database using SQLite3.
In order to better learn Ruby, I'm tracing into SQLite3.
What I don't understand ...
1
vote
1answer
100 views
Select unique records without natural keys
For example, I have table names: id integer primary key, name text unique and unique index for names(name).
I want to select records by index-style syntax: (n12, nBill) = (Name[12], Name['Bill']) or ...
3
votes
1answer
1k views
Escaping Strings For Ruby SQLite Insert
I'm creating a Ruby script to import a tab-delimited text file of about 150k lines into SQLite. Here it is so far:
require 'sqlite3'
file = File.new("/Users/michael/catalog.txt")
string = []
# ...
0
votes
1answer
36 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
1answer
161 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 ...
1
vote
2answers
291 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
1k 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 ...
2
votes
1answer
162 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
3answers
3k 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 ...
2
votes
1answer
5k 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 ...
4
votes
1answer
489 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
900 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
611 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 ...
3
votes
2answers
271 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
, ...
0
votes
2answers
248 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 ...
1
vote
1answer
255 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
...
0
votes
1answer
2k 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
112 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
1k 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 ...
