Method: IBRuby::Row#each

Defined in:
lib/src.rb

#each {|column, vlaue| ... } ⇒ Object

This method iterates over the contents of a Row object. The block specified for the method should accept two parameters; one for the column alias and one for the column value.

Yields:

  • (column, vlaue)


928
929
930
# File 'lib/src.rb', line 928

def each
   yield column, vlaue
end