Class: Sequel::Firebird::Dataset

Inherits:
Dataset show all
Includes:
UnsupportedIntersectExcept
Defined in:
lib/sequel/adapters/firebird.rb

Overview

Dataset class for Firebird datasets

Constant Summary collapse

BOOL_TRUE =
'1'.freeze
BOOL_FALSE =
'0'.freeze
NULL =
LiteralString.new('NULL').freeze
COMMA_SEPARATOR =
', '.freeze
FIREBIRD_TIMESTAMP_FORMAT =
"TIMESTAMP '%Y-%m-%d %H:%M:%S".freeze
SELECT_CLAUSE_ORDER =
%w'distinct limit columns from join where group having compounds order'.freeze

Constants inherited from Dataset

Dataset::AND_SEPARATOR, Dataset::COLUMN_CHANGE_OPTS, Dataset::COLUMN_REF_RE1, Dataset::COLUMN_REF_RE2, Dataset::COLUMN_REF_RE3, Dataset::COUNT_FROM_SELF_OPTS, Dataset::COUNT_OF_ALL_AS_COUNT, Dataset::DATASET_CLASSES, Dataset::IS_LITERALS, Dataset::IS_OPERATORS, Dataset::MUTATION_METHODS, Dataset::NOTIMPL_MSG, Dataset::N_ARITY_OPERATORS, Dataset::PREPARED_ARG_PLACEHOLDER, Dataset::QUESTION_MARK, Dataset::STOCK_COUNT_OPTS, Dataset::STOCK_TRANSFORMS, Dataset::TWO_ARITY_OPERATORS, Dataset::WILDCARD

Instance Attribute Summary

Attributes inherited from Dataset

#db, #identifier_input_method, #identifier_output_method, #opts, #quote_identifiers, #row_proc

Instance Method Summary collapse

Methods inherited from Dataset

#<<, #[], #[]=, #add_graph_aliases, #aliased_expression_sql, #all, #and, #array_sql, #as, #avg, #call, #case_expression_sql, #cast_sql, #clone, #column_all_sql, #columns, #columns!, #complex_expression_sql, #count, #create_or_replace_view, #create_view, dataset_classes, def_mutation_method, #def_mutation_method, #delete, #delete_sql, #distinct, #each, #each_page, #empty?, #except, #exclude, #exists, #filter, #first, #first_source, #from, #from_self, #function_sql, #get, #graph, #grep, #group, #group_and_count, #having, #import, inherited, #initialize, #insert_multiple, #insert_sql, #inspect, #intersect, #interval, #invert, #irregular_function_sql, #join_clause_sql, #join_on_clause_sql, #join_table, #join_using_clause_sql, #last, #limit, #literal, #map, #max, #min, #model_classes, #multi_insert, #multi_insert_sql, #naked, #or, #order, #order_more, #ordered_expression_sql, #paginate, #placeholder_literal_string_sql, #polymorphic_key, #prepare, #print, #qualified_identifier_sql, #query, #quote_column_ref, #quote_identifier, #quote_identifiers?, #quote_schema_table, #quoted_identifier, #range, #reverse_order, #schema_and_table, #select, #select_all, #select_more, #select_sql, #server, #set, #set_defaults, #set_graph_aliases, #set_model, #set_overrides, #single_record, #single_value, #size, #sql, #subscript_sql, #sum, #symbol_to_column_ref, #table_exists?, #to_csv, #to_hash, #transform, #transform_load, #transform_save, #unfiltered, #union, #uniq, #unordered, #upcase_identifiers=, #upcase_identifiers?, #update, #update_sql, #where, #with_sql

Methods included from Metaprogramming

#meta_def

Methods included from Enumerable

#send_each

Constructor Details

This class inherits a constructor from Sequel::Dataset

Instance Method Details

#fetch_rows(sql, &block) ⇒ Object

Yield all rows returned by executing the given SQL and converting the types.



229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/sequel/adapters/firebird.rb', line 229

def fetch_rows(sql, &block)
  execute(sql) do |s|
    begin
      @columns = s.fields.map{|c| output_identifier(c.name)}
      s.fetchall(:symbols_hash).each do |r|
        h = {}
        r.each{|k,v| h[output_identifier(k)] = v}
        yield h
      end
    ensure
      s.close
    end
  end
  self
end

#insert(*values) ⇒ Object

Insert given values into the database.



246
247
248
249
250
251
252
253
# File 'lib/sequel/adapters/firebird.rb', line 246

def insert(*values)
  if !@opts[:sql]
    clone(default_server_opts(:sql=>insert_returning_pk_sql(*values))).single_value
  else
    execute_insert(insert_sql(*values), :table=>opts[:from].first,
      :values=>values.size == 1 ? values.first : values)
  end
end

#insert_returning_pk_sql(*values) ⇒ Object

Use the RETURNING clause to return the primary key of the inserted record, if it exists



256
257
258
259
# File 'lib/sequel/adapters/firebird.rb', line 256

def insert_returning_pk_sql(*values)
  pk = db.primary_key(opts[:from].first)
  insert_returning_sql(pk ? Sequel::SQL::Identifier.new(pk) : NULL, *values)
end

#insert_returning_sql(returning, *values) ⇒ Object

Use the RETURNING clause to return the columns listed in returning.



262
263
264
# File 'lib/sequel/adapters/firebird.rb', line 262

def insert_returning_sql(returning, *values)
  "#{insert_sql(*values)} RETURNING #{column_list(Array(returning))}"
end

#insert_select(*values) ⇒ Object

Insert a record returning the record inserted



267
268
269
# File 'lib/sequel/adapters/firebird.rb', line 267

def insert_select(*values)
  naked.clone(default_server_opts(:sql=>insert_returning_sql(nil, *values))).single_record
end

#select_clause_orderObject

The order of clauses in the SELECT SQL statement



272
273
274
# File 'lib/sequel/adapters/firebird.rb', line 272

def select_clause_order
  SELECT_CLAUSE_ORDER
end

#select_limit_sql(sql, opts) ⇒ Object



276
277
278
279
# File 'lib/sequel/adapters/firebird.rb', line 276

def select_limit_sql(sql, opts)
  sql << " FIRST #{opts[:limit]}" if opts[:limit]
  sql << " SKIP #{opts[:offset]}" if opts[:offset]
end