# File lib/marjoree/result_set.rb, line 18
  def apply_output_params(output_param_names, statement)
    output_param_names.each do |output_param_name|
      instance_variable_set(output_param_name, statement.fetch![0])
      statement.more_results
    end
  end