Class: Sequel::JDBC::Dataset
- Includes:
- StoredProcedures
- Defined in:
- lib/sequel_core/adapters/jdbc.rb
Direct Known Subclasses
Defined Under Namespace
Modules: PreparedStatementMethods, StoredProcedureMethods
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::SELECT_CLAUSE_ORDER, 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, #upcase_identifiers
Instance Method Summary collapse
-
#fetch_rows(sql, &block) ⇒ Object
Correctly return rows from the database and return them as hashes.
-
#literal(v) ⇒ Object
Use the ISO values for dates and times.
-
#prepare(type, name = nil, values = nil) ⇒ Object
Create a named prepared statement that is stored in the database (and connection) for reuse.
Methods inherited from Dataset
#<<, #[], #[]=, #add_graph_aliases, #aliased_expression_sql, #all, #and, #array_sql, #as, #avg, #call, #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, #placeholder_literal_string_sql, #polymorphic_key, #print, #qualified_identifier_sql, #query, #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, #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?, #update, #update_sql
Methods included from Enumerable
Constructor Details
This class inherits a constructor from Sequel::Dataset
Instance Method Details
#fetch_rows(sql, &block) ⇒ Object
Correctly return rows from the database and return them as hashes.
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/sequel_core/adapters/jdbc.rb', line 375 def fetch_rows(sql, &block) execute(sql) do |result| # get column names = result.getMetaData column_count = .getColumnCount @columns = [] column_count.times {|i| @columns << .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.
394 395 396 397 398 399 400 401 402 403 |
# File 'lib/sequel_core/adapters/jdbc.rb', line 394 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 = nil, values = nil) ⇒ Object
Create a named prepared statement that is stored in the database (and connection) for reuse.
407 408 409 410 411 412 413 414 415 |
# File 'lib/sequel_core/adapters/jdbc.rb', line 407 def prepare(type, name=nil, 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 |