Class: Faststep::Db

Inherits:
Object
  • Object
show all
Defined in:
ext/faststep/db.c,
lib/faststep/db.rb

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (Db) initialize(name, connection)

A new instance of Db



5
6
7
8
# File 'lib/faststep/db.rb', line 5

def initialize(name, connection)
  @name       = name
  @connection = connection
end

Instance Attribute Details

- (Object) connection (readonly)

Returns the value of attribute connection



3
4
5
# File 'lib/faststep/db.rb', line 3

def connection
  @connection
end

- (Object) name (readonly)

Returns the value of attribute name



3
4
5
# File 'lib/faststep/db.rb', line 3

def name
  @name
end

Instance Method Details

- (Object) collection(collection_name) Also known as: []



10
11
12
# File 'lib/faststep/db.rb', line 10

def collection(collection_name)
  Collection.new(collection_name, self)
end

- (Object) collection_names



16
17
18
19
20
# File 'lib/faststep/db.rb', line 16

def collection_names
  names = collections_info.map {|doc| doc["name"] }
  names.reject! {|name| name.index(@name).nil? || name.index('$') }
  names.map {|name| name.sub("#{@name}.", "") }
end

- (Object) collections



22
23
24
25
26
# File 'lib/faststep/db.rb', line 22

def collections
  collection_names.map do |collection_name|
    Collection.new(collection_name, self)
  end
end

- (Object) command

- (Object) drop

- (Object) get_last_error