# File lib/rubyrep/proxy_connection.rb, line 196
    def select_cursor(options)
      cursor = ResultFetcher.new(self, options)
      unless options[:type_cast] == false
        cursor = TypeCastingCursor.new(self, options[:table], cursor)
      end
      cursor
    end