2004-11-23 20:04:44 -05:00
|
|
|
print "Using native SQlite\n"
|
2005-11-24 02:01:43 -05:00
|
|
|
require_dependency 'fixtures/course'
|
2004-11-23 20:04:44 -05:00
|
|
|
require 'logger'
|
|
|
|
ActiveRecord::Base.logger = Logger.new("debug.log")
|
|
|
|
|
2005-02-17 14:28:13 -05:00
|
|
|
class SqliteError < StandardError
|
|
|
|
end
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
BASE_DIR = File.expand_path(File.dirname(__FILE__) + '/../../fixtures')
|
|
|
|
sqlite_test_db = "#{BASE_DIR}/fixture_database.sqlite"
|
|
|
|
sqlite_test_db2 = "#{BASE_DIR}/fixture_database_2.sqlite"
|
|
|
|
|
2006-11-04 21:01:31 -05:00
|
|
|
def make_connection(clazz, db_file)
|
2006-07-10 15:27:04 -04:00
|
|
|
ActiveRecord::Base.configurations = { clazz.name => { :adapter => 'sqlite', :database => db_file } }
|
2004-11-23 20:04:44 -05:00
|
|
|
unless File.exist?(db_file)
|
|
|
|
puts "SQLite database not found at #{db_file}. Rebuilding it."
|
2007-06-07 21:37:13 -04:00
|
|
|
sqlite_command = %Q{sqlite "#{db_file}" "create table a (a integer); drop table a;"}
|
2004-11-23 20:04:44 -05:00
|
|
|
puts "Executing '#{sqlite_command}'"
|
2005-02-17 14:28:13 -05:00
|
|
|
raise SqliteError.new("Seems that there is no sqlite executable available") unless system(sqlite_command)
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
2006-11-04 21:01:31 -05:00
|
|
|
clazz.establish_connection(clazz.name)
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
|
|
|
|
2006-11-04 21:01:31 -05:00
|
|
|
make_connection(ActiveRecord::Base, sqlite_test_db)
|
|
|
|
make_connection(Course, sqlite_test_db2)
|