Class: RailsDb::Table

Inherits:
Object
  • Object
show all
Includes:
Connection
Defined in:
lib/rails_db/table.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Connection

#column_names, #column_properties, #columns, #connection, #to_param

Constructor Details

#initialize(table_name) ⇒ Table

Returns a new instance of Table.



17
18
19
20
21
22
# File 'lib/rails_db/table.rb', line 17

def initialize(table_name)
  throw 'Access Denied' unless RailsDb::Database.accessible_tables.include?(table_name)
  @name = table_name
  @data = RailsDb::TableData.new(self)
  self
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



8
9
10
# File 'lib/rails_db/table.rb', line 8

def data
  @data
end

#nameObject (readonly)

Returns the value of attribute name.



8
9
10
# File 'lib/rails_db/table.rb', line 8

def name
  @name
end

Instance Method Details

#as_modelObject



60
61
62
63
64
65
66
# File 'lib/rails_db/table.rb', line 60

def as_model
  begin
    @model ||= name.classify.constantize
  rescue
    @model ||= create_model(name)
  end
end

#create_model(table_name, &block) ⇒ Object



49
50
51
52
53
54
55
56
57
58
# File 'lib/rails_db/table.rb', line 49

def create_model(table_name, &block)
  klass = Class.new(ActiveRecord::Base) do
    def self.model_name
      ActiveModel::Name.new(self, nil, table_name)
    end
    self.table_name = table_name
  end
  klass.class_eval(&block) if block_given?
  klass
end

#delete(id) ⇒ Object



45
46
47
# File 'lib/rails_db/table.rb', line 45

def delete(id)
  RailsDb::Database.delete(name, primary_key, id)
end

#indexesObject



33
34
35
# File 'lib/rails_db/table.rb', line 33

def indexes
  RailsDb::Database.indexes(name)
end

#primary_keyObject



41
42
43
# File 'lib/rails_db/table.rb', line 41

def primary_key
  RailsDb::Database.primary_key(name)
end

#to_csvObject



24
25
26
27
28
29
30
31
# File 'lib/rails_db/table.rb', line 24

def to_csv
  CSV.generate do |csv|
    csv << column_names
    data.data.rows.each do |row|
      csv << row
    end
  end
end

#truncateObject



37
38
39
# File 'lib/rails_db/table.rb', line 37

def truncate
  RailsDb::Database.truncate(name)
end