Sha256: 665802f2e3f77ad2cdce9865f5bf103d6660ef1ecdc94cef5f477a3403d9b4e8
Contents?: true
Size: 677 Bytes
Versions: 309
Compression:
Stored size: 677 Bytes
Contents
module ActiveRecord module ConnectionAdapters class StatementPool include Enumerable def initialize(connection, max = 1000) @connection = connection @max = max end def each raise NotImplementedError end def key?(key) raise NotImplementedError end def [](key) raise NotImplementedError end def length raise NotImplementedError end def []=(sql, key) raise NotImplementedError end def clear raise NotImplementedError end def delete(key) raise NotImplementedError end end end end
Version data entries
309 entries across 274 versions & 22 rubygems