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>
sqlite3CLI tool? – mu is too short Oct 31 '11 at 17:44