Class: Sequel::Mock::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/sequel/adapters/mock.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(db, server, opts) ⇒ Connection

Store the db, server, and opts.



20
21
22
23
24
# File 'lib/sequel/adapters/mock.rb', line 20

def initialize(db, server, opts)
  @db = db
  @server = server
  @opts = opts
end

Instance Attribute Details

#dbObject (readonly)

Sequel::Mock::Database object that created this connection



9
10
11
# File 'lib/sequel/adapters/mock.rb', line 9

def db
  @db
end

#optsObject (readonly)

The specific database options for this connection.



17
18
19
# File 'lib/sequel/adapters/mock.rb', line 17

def opts
  @opts
end

#serverObject (readonly)

Shard this connection operates on, when using Sequel’s sharding support (always :default for databases not using sharding).



14
15
16
# File 'lib/sequel/adapters/mock.rb', line 14

def server
  @server
end

Instance Method Details

#execute(sql) ⇒ Object

Delegate to the db’s #_execute method.



27
28
29
# File 'lib/sequel/adapters/mock.rb', line 27

def execute(sql)
  @db.send(:_execute, self, sql, :log=>false) 
end