class Sequel::Mock::Connection
Connection class for Sequel's mock adapter.
Attributes
db[R]
Sequel::Mock::Database object that created this connection
opts[R]
The specific database options for this connection.
server[R]
Shard this connection operates on, when using Sequel's sharding support (always :default for databases not using sharding).
Public Class Methods
new(db, server, opts)
click to toggle source
Store the db, server, and opts.
# File lib/sequel/adapters/mock.rb, line 21 def initialize(db, server, opts) @db = db @server = server @opts = opts end
Public Instance Methods
execute(sql)
click to toggle source
Delegate to the db's #_execute method.
# File lib/sequel/adapters/mock.rb, line 28 def execute(sql) @db.send(:_execute, self, sql, :log=>false) end