class Sequel::Mock::Connection

Connection class for Sequel’s mock adapter.

def execute(sql)

Delegate to the db's #_execute method.
def execute(sql)
  @db.send(:_execute, self, sql) 
end

def initialize(db, server, opts)

Store the db, server, and opts.
def initialize(db, server, opts)
  @db = db
  @server = server
  @opts = opts
end