Method: Informix::SequentialCursor#fetch!
- Defined in:
- lib/informix/seqcursor.rb
#fetch! ⇒ Object
Fetches the next record, storing it in the same Array object every time it is called.
Returns the record fetched as an array, or nil if there are no records left.
cursor.fetch! => array or nil
53 54 55 |
# File 'lib/informix/seqcursor.rb', line 53 def fetch! fetch0(Array, true) end |