# File lib/rubyrep/proxy_connection.rb, line 217
    def select_records(options)
      cursor = select_cursor(options)
      rows = []
      while cursor.next?
        rows << cursor.next_row
      end
      cursor.clear
      rows
    end