Sha256: 0f9cd1e70a0d177033887bec02c56d159dfe95d53c2499a94c54d819bc7b35bc

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

module DuckDB
  # The DuckDB::PendingResult encapsulates connection with DuckDB pending
  # result.
  # PendingResult provides methods to execute SQL asynchronousely and check
  # if the result is ready and to get the result.
  #
  #   require 'duckdb'
  #
  #   DuckDB::Result.use_chunk_each = true
  #
  #   db = DuckDB::Database.open
  #   con = db.connect
  #   stmt = con.prepared_statement(VERY_SLOW_QUERY)
  #   pending_result = stmt.pending_prepared
  #   while pending_result.state == :not_ready
  #     print '.'
  #     sleep(0.01)
  #     pending_result.execute_task
  #   end
  #   result = pending_result.execute_pending
  class PendingResult
    STATES = %i[ready not_ready error no_tasks].freeze

    # returns the state of the pending result.
    # The result can be :ready, :not_ready, :error, :no_tasks.
    # (:no_tasks is available only with duckdb 0.9.0 or later.)
    #
    # :ready means the result is ready to be fetched, and
    # you can call `execute_pending` to get the result.
    #
    # :not_ready means the result is not ready yet, so
    # you need to call `execute_task`.
    #
    # @return [Symbol] :ready, :not_ready, :error, :no_tasks
    def state
      STATES[_state]
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
duckdb-1.0.0.2 lib/duckdb/pending_result.rb
duckdb-1.0.0.1 lib/duckdb/pending_result.rb
duckdb-1.0.0.0 lib/duckdb/pending_result.rb