Class: DbAgile::Command::Db::Use

Inherits:
DbAgile::Command show all
Defined in:
lib/dbagile/command/db/use.rb

Overview

Set the current database to use

Usage: dba #DbAgile::Command#command_name CONFIG

Constant Summary

Constants inherited from DbAgile::Command

CATEGORIES, CATEGORY_NAMES

Instance Attribute Summary collapse

Attributes inherited from DbAgile::Command

#environment

Attributes included from ClassMethods

#description, #summary, #usage

Instance Method Summary collapse

Methods inherited from DbAgile::Command

#add_options, #category, #check_command, #command_name, #description, #initialize, #options, #run, #set_default_options, #show_help, #summary, #unsecure_run, #usage

Methods included from ClassMethods

#build_command_options, #build_me, #category, #command_for, #command_name, #command_name_of, #each_subclass, #inherited, #ruby_method_for, #subclasses

Methods included from Robust

#ambigous_argument_list!, #assumption_error!, #bad_argument_list!, #has_command!, #is_in!, #valid_argument_list!, #valid_read_file!

Methods included from DbAgile::Core::IO::Robustness

#has_database!, #valid_database_name!, #valid_database_uri!, #valid_schema_files!

Constructor Details

This class inherits a constructor from DbAgile::Command

Instance Attribute Details

#matchObject

Database name



13
14
15
# File 'lib/dbagile/command/db/use.rb', line 13

def match
  @match
end

Instance Method Details

#execute_commandDbAgile::Core::Database

Executes the command.

Returns:



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/dbagile/command/db/use.rb', line 26

def execute_command
  db = nil
  with_repository do |repository|
    db = has_database!(repository, self.match)

    # Makes it the current one
    repository.current_db_name = db.name
      
    # Flush the repository file
    repository.save!
  end

  # List available databases now
  DbAgile::dba(environment){|dba| dba.db_list %w{}}

  # Return current database
  db
end

#normalize_pending_arguments(arguments) ⇒ Object

Normalizes the pending arguments



16
17
18
19
# File 'lib/dbagile/command/db/use.rb', line 16

def normalize_pending_arguments(arguments)
  self.match = valid_argument_list!(arguments, Symbol)
  self.match = valid_database_name!(self.match)
end