Class: FluentQuery::Drivers::Result
- Inherits:
-
Object
- Object
- FluentQuery::Drivers::Result
- Defined in:
- lib/fluent-query/drivers/result.rb
Overview
Represents general driver result accessor.
Instance Method Summary collapse
- #all ⇒ Object
- #count ⇒ Object
- #each ⇒ Object
- #free! ⇒ Object
- #hash ⇒ Object
-
#initialize ⇒ Result
constructor
A new instance of Result.
- #one ⇒ Object
- #repeat! ⇒ Object
- #single ⇒ Object
Constructor Details
#initialize ⇒ Result
Returns a new instance of Result.
18 19 20 21 22 |
# File 'lib/fluent-query/drivers/result.rb', line 18 def initialize if self.instance_of? FluentQuery::Drivers::Result not_implemented end end |
Instance Method Details
#all ⇒ Object
29 30 31 |
# File 'lib/fluent-query/drivers/result.rb', line 29 def all not_implemented end |
#count ⇒ Object
84 85 86 |
# File 'lib/fluent-query/drivers/result.rb', line 84 def count not_implemented end |
#each ⇒ Object
65 66 67 |
# File 'lib/fluent-query/drivers/result.rb', line 65 def each not_implemented end |
#free! ⇒ Object
93 94 95 |
# File 'lib/fluent-query/drivers/result.rb', line 93 def free! not_implemented end |
#hash ⇒ Object
56 57 58 |
# File 'lib/fluent-query/drivers/result.rb', line 56 def hash not_implemented end |
#one ⇒ Object
38 39 40 |
# File 'lib/fluent-query/drivers/result.rb', line 38 def one not_implemented end |
#repeat! ⇒ Object
75 76 77 |
# File 'lib/fluent-query/drivers/result.rb', line 75 def repeat! not_implemented end |
#single ⇒ Object
47 48 49 |
# File 'lib/fluent-query/drivers/result.rb', line 47 def single not_implemented end |