Method: Informix::SequentialCursor#fetch_many
- Defined in:
- lib/informix/seqcursor.rb
#fetch_many(n) ⇒ Object
Reads at most n records.
Returns the records read as an array of arrays
cursor.fetch_many(n) => array
83 84 85 |
# File 'lib/informix/seqcursor.rb', line 83 def fetch_many(n) fetch_many0(n, Array) end |