Class: Rails::Sequel::Storage::Sqlite

Inherits:
Rails::Sequel::Storage show all
Defined in:
lib/sequel-rails/storage.rb

Instance Attribute Summary

Attributes inherited from Rails::Sequel::Storage

#config

Instance Method Summary collapse

Methods inherited from Rails::Sequel::Storage

#charset, #create, create_all, create_environment, #database, #drop, drop_all, drop_environment, #host, #initialize, new, #owner, #password, #port, #username

Constructor Details

This class inherits a constructor from Rails::Sequel::Storage

Instance Method Details

#_createObject



108
109
110
111
# File 'lib/sequel-rails/storage.rb', line 108

def _create
  return if in_memory?
  ::Sequel.connect(config.merge('database' => path))
end

#_dropObject



113
114
115
116
# File 'lib/sequel-rails/storage.rb', line 113

def _drop
  return if in_memory?
  path.unlink if path.file?
end