Class: Sequel::JDBC::Dataset

Inherits:
Dataset show all
Defined in:
lib/sequel_core/adapters/jdbc.rb

Direct Known Subclasses

MySQL::Dataset, SQLite::Dataset

Defined Under Namespace

Modules: PreparedStatementMethods

Constant Summary

Constants inherited from Dataset

Dataset::AND_SEPARATOR, Dataset::BOOL_FALSE, Dataset::BOOL_TRUE, Dataset::COLUMN_CHANGE_OPTS, Dataset::COLUMN_REF_RE1, Dataset::COLUMN_REF_RE2, Dataset::COLUMN_REF_RE3, Dataset::COMMA_SEPARATOR, Dataset::COUNT_FROM_SELF_OPTS, Dataset::COUNT_OF_ALL_AS_COUNT, Dataset::DATASET_CLASSES, Dataset::DATE_FORMAT, Dataset::MUTATION_METHODS, Dataset::NOTIMPL_MSG, Dataset::NULL, Dataset::N_ARITY_OPERATORS, Dataset::PREPARED_ARG_PLACEHOLDER, Dataset::QUESTION_MARK, Dataset::STOCK_COUNT_OPTS, Dataset::STOCK_TRANSFORMS, Dataset::TIMESTAMP_FORMAT, Dataset::TWO_ARITY_OPERATORS, Dataset::WILDCARD

Instance Attribute Summary

Attributes inherited from Dataset

#db, #opts, #quote_identifiers, #row_proc

Instance Method Summary collapse

Methods inherited from Dataset

#<<, #[], #[]=, #aliased_expression_sql, #all, #and, #as, #avg, #case_expression_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, #each, #each_page, #empty?, #except, #exclude, #exists, #filter, #first, #first_source, #from, #from_self, #function_sql, #get, #graph, #grep, #group, #group_and_count, #having, inherited, #initialize, #insert, #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, #map, #max, #min, #model_classes, #multi_insert, #multi_insert_sql, #naked, #or, #order, #order_more, #ordered_expression_sql, #paginate, #polymorphic_key, #print, #qualified_identifier_sql, #query, #quote_identifier, #quote_identifiers?, #quoted_identifier, #range, #reverse_order, #select, #select_all, #select_more, #select_sql, #server, #set, #set_defaults, #set_graph_aliases, #set_model, #set_overrides, #single_record, #single_value, #subscript_sql, #sum, #symbol_to_column_ref, #table_exists?, #to_csv, #to_hash, #transform, #transform_load, #transform_save, #unfiltered, #union, #uniq, #unordered, #update, #update_sql

Methods included from Enumerable

#send_each

Constructor Details

This class inherits a constructor from Sequel::Dataset

Instance Method Details

#call(type, hash, values = nil, &block) ⇒ Object

Create an unnamed prepared statement and call it. Allows the use of bind variables.



314
315
316
# File 'lib/sequel_core/adapters/jdbc.rb', line 314

def call(type, hash, values=nil, &block)
  prepare(type, nil, values).call(hash, &block)
end

#fetch_rows(sql, &block) ⇒ Object

Correctly return rows from the database and return them as hashes.



319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# File 'lib/sequel_core/adapters/jdbc.rb', line 319

def fetch_rows(sql, &block)
  execute(sql) do |result|
    # get column names
    meta = result.
    column_count = meta.getColumnCount
    @columns = []
    column_count.times {|i| @columns << meta.getColumnName(i+1).to_sym}

    # get rows
    while result.next
      row = {}
      @columns.each_with_index {|v, i| row[v] = result.getObject(i+1)}
      yield row
    end
  end
  self
end

#literal(v) ⇒ Object

Use the ISO values for dates and times.



338
339
340
341
342
343
344
345
346
347
# File 'lib/sequel_core/adapters/jdbc.rb', line 338

def literal(v)
  case v
  when Time
    literal(v.iso8601)
  when Date, DateTime, Java::JavaSql::Timestamp, Java::JavaSql::Date
    literal(v.to_s)
  else
    super
  end
end

#prepare(type, name, values = nil) ⇒ Object

Create a named prepared statement that is stored in the database (and connection) for reuse.



351
352
353
354
355
356
357
358
359
# File 'lib/sequel_core/adapters/jdbc.rb', line 351

def prepare(type, name, values=nil)
  ps = to_prepared_statement(type, values)
  ps.extend(PreparedStatementMethods)
  if name
    ps.prepared_statement_name = name
    db.prepared_statements[name] = ps
  end
  ps
end