class Tableless::DummyAdapter

Public Class Methods

new(*) click to toggle source
Calls superclass method
# File lib/tableless/connection_adapters/dummy_adapter.rb, line 3
def initialize(*)
  super
  @schema_cache = Tableless::SchemaCache.new
end

Public Instance Methods

schema_cache() click to toggle source
# File lib/tableless/connection_adapters/dummy_adapter.rb, line 8
def schema_cache
  @schema_cache
end