Class: ActiveScaffold::Tableless::StatementCache
- Defined in:
- lib/active_scaffold/tableless.rb
Instance Method Summary collapse
- #execute(values, connection) ⇒ Object
-
#initialize(key, model = nil) ⇒ StatementCache
constructor
A new instance of StatementCache.
Constructor Details
#initialize(key, model = nil) ⇒ StatementCache
Returns a new instance of StatementCache.
162 163 164 165 |
# File 'lib/active_scaffold/tableless.rb', line 162 def initialize(key, model = nil) @key = key @model = model end |
Instance Method Details
#execute(values, connection) ⇒ Object
167 168 169 |
# File 'lib/active_scaffold/tableless.rb', line 167 def execute(values, connection) @model.where(@key => values) end |