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 'sqlite3'
puts SQLite3::SQLITE_VERSION_NUMBER
db_filename = 'test2.db'
db = SQLite3::Database.new(db_filename)
sql = <<-SQL
  PRAGMA foreign_keys = ON;
  CREATE TABLE IF NOT EXISTS blah0 (
    id INTEGER PRIMARY KEY
  );
  CREATE TABLE IF NOT EXISTS blah1 (
    mid INTEGER,
    sid INTEGER,
    FOREIGN KEY(sid) REFERENCES blah0(id)
  );
SQL
db.execute_batch(sql)
db.close

The above code results in the following error situation (this is all tested on MacOSX (Lion) using Macports if that matters).

$ rm test2.db 
$ ruby dbtest.rb 
3007005
/Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4/lib/sqlite3/database.rb:91:in `initialize': unknown column "sid" in foreign key definition (SQLite3::SQLException)
    from /Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4/lib/sqlite3/database.rb:91:in `new'
    from /Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4/lib/sqlite3/database.rb:91:in `prepare'
    from /Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4/lib/sqlite3/database.rb:223:in `execute_batch'
    from dbtest.rb:20
$ sqlite3 test2.db 
SQLite version 3.7.5
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .schema
CREATE TABLE blah0 (
    id INTEGER PRIMARY KEY
  );
sqlite>
link|improve this question
Works for me with SQLite 3.7.3, Ruby 1.9.2 or 1.8.7, and the 1.3.4 SQLite3 gem. Does the SQL work if you paste it into the sqlite3 CLI tool? – mu is too short Oct 31 '11 at 17:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.