# File lib/dbi/base_classes/statement.rb, line 123
        def fetch_many(cnt)
            rows = []
            cnt.times do
                row = fetch
                break if row.nil?
                rows << row.dup
            end

            if rows.empty?
                nil
            else
                rows
            end
        end