Method: Informix::SequentialCursor#each_hash

Defined in:
lib/informix/seqcursor.rb

#each_hash(&block) ⇒ Object

Iterates over the remaining records, passing each record to the block as a hash.

cursor.each_hash {|record| block } => cursor


134
135
136
# File 'lib/informix/seqcursor.rb', line 134

def each_hash(&block)
  each0(Hash, false, &block)
end