Module: ArJdbc::Oracle
- Included in:
- ActiveRecord::ConnectionAdapters::OracleAdapter
- Defined in:
- lib/arjdbc/oracle/adapter.rb
Defined Under Namespace
Classes: TableDefinition
Constant Summary collapse
- ADAPTER_NAME =
'Oracle'.freeze
- NATIVE_DATABASE_TYPES =
{ :primary_key => "NUMBER(38) NOT NULL PRIMARY KEY", :string => { :name => "VARCHAR2", :limit => 255 }, :text => { :name => "CLOB" }, :integer => { :name => "NUMBER", :limit => 38 }, :float => { :name => "NUMBER" }, :decimal => { :name => "DECIMAL" }, :datetime => { :name => "DATE" }, :timestamp => { :name => "TIMESTAMP" }, :time => { :name => "DATE" }, :date => { :name => "DATE" }, :binary => { :name => "BLOB" }, :boolean => { :name => "NUMBER", :limit => 1 }, :raw => { :name => "RAW", :limit => 2000 }, :xml => { :name => 'XMLTYPE' } }
- IDENTIFIER_LENGTH =
30
- AUTOGENERATED_SEQUENCE_NAME =
use in set_sequence_name to avoid fetching primary key value from sequence
'autogenerated'.freeze
- @@do_not_prefetch_primary_key =
{}
Class Method Summary collapse
- .arel_visitor_type(config = nil) ⇒ Object
-
.emulate_booleans ⇒ Object
deprecated
Deprecated.
Use #emulate_booleans? instead.
- .emulate_booleans=(emulate) ⇒ Object
-
.emulate_booleans? ⇒ Boolean
Boolean emulation can be disabled using :.
- .jdbc_connection_class ⇒ Object
- .update_lob_values=(update) ⇒ Object
-
.update_lob_values? ⇒ Boolean
Updating records with LOB values (binary/text columns) in a separate statement can be disabled using :.
Instance Method Summary collapse
- #adapter_name ⇒ Object
- #add_column_options!(sql, options) ⇒ Object
- #add_limit_offset!(sql, options) ⇒ Object
-
#add_order_by_for_association_limiting!(sql, options) ⇒ Object
ORDER BY clause for the passed order option.
- #change_column(table_name, column_name, type, options = {}) ⇒ Object
- #change_column_default(table_name, column_name, default) ⇒ Object
- #charset ⇒ Object
- #collation ⇒ Object
- #column_name_length ⇒ Object
-
#columns(table_name, name = nil) ⇒ Object
NOTE: better to use current_schema instead of the configured one ?!.
- #columns_for_distinct(columns, orders) ⇒ Object
- #create_table(name, options = {}) ⇒ Object
- #current_database ⇒ Object
- #current_schema ⇒ Object
- #current_schema=(schema_owner) ⇒ Object
- #current_user ⇒ Object
- #database_parameters ⇒ Object
-
#distinct(columns, order_by) ⇒ Object
SELECT DISTINCT clause for a given set of columns and a given ORDER BY clause.
- #drop_table(name, options = {}) ⇒ Object
- #exec_insert(sql, name, binds, pk = nil, sequence_name = nil) ⇒ Object
- #exec_insert_returning(sql, name, binds, pk = nil) ⇒ Object
- #explain(arel, binds = []) ⇒ Object
-
#in_clause_length ⇒ Object
(also: #ids_in_list_limit)
Prevent ORA-01795 for in clauses with more than 1000.
- #index_name_length ⇒ Object
- #indexes(table, name = nil) ⇒ Object
- #insert(arel, name = nil, pk = nil, id_value = nil, sequence_name = nil, binds = []) ⇒ Object
- #insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) ⇒ Object protected
- #jdbc_column_class ⇒ Object
- #modify_types(types) ⇒ Object
- #native_database_types ⇒ Object
-
#next_sequence_value(sequence_name) ⇒ Object
Returns the next sequence value from a sequence generator.
-
#prefetch_primary_key?(table_name = nil) ⇒ Boolean
Returns true for Oracle adapter (since Oracle requires primary key values to be pre-fetched before insert).
-
#primary_key(table_name) ⇒ Object
Returns just a table's primary key.
- #quote(value, column = nil) ⇒ Object
- #quote_column_name(name) ⇒ Object
- #quote_raw(value) ⇒ Object
- #quote_table_name(name) ⇒ Object
-
#quoted_date(value, time = nil) ⇒ Object
Quote date/time values for use in SQL input.
- #release_savepoint(name = nil) ⇒ Object
- #remove_column(table_name, *column_names) ⇒ Object (also: #remove_columns)
- #rename_column(table_name, column_name, new_column_name) ⇒ Object
- #rename_table(name, new_name) ⇒ Object
- #select(sql, name = nil, binds = []) ⇒ Object
- #sequence_name_length ⇒ Object
- #sql_for_insert(sql, pk, id_value, sequence_name, binds) ⇒ Object
- #supports_explain? ⇒ Boolean
- #supports_migrations? ⇒ Boolean
- #supports_primary_key? ⇒ Boolean
- #supports_savepoints? ⇒ Boolean
- #supports_views? ⇒ Boolean
-
#table_alias_length ⇒ Object
maximum length of Oracle identifiers is 30.
- #table_definition(*args) ⇒ Object
- #table_name_length ⇒ Object
- #tables ⇒ Object
- #tablespace(table_name) ⇒ Object
- #temporary_table?(table_name) ⇒ Boolean
- #truncate(table_name, name = nil) ⇒ Object
- #type_to_sql(type, limit = nil, precision = nil, scale = nil) ⇒ Object
- #unquote_table_name(name) ⇒ Object
- #update_lob_value?(value, column = nil) ⇒ Boolean
- #use_insert_returning? ⇒ Boolean
Class Method Details
.arel_visitor_type(config = nil) ⇒ Object
109 110 111 |
# File 'lib/arjdbc/oracle/adapter.rb', line 109 def self.arel_visitor_type(config = nil) ::Arel::Visitors::Oracle end |
.emulate_booleans ⇒ Object
Use #emulate_booleans? instead.
89 |
# File 'lib/arjdbc/oracle/adapter.rb', line 89 def self.emulate_booleans; @@emulate_booleans; end |
.emulate_booleans=(emulate) ⇒ Object
91 |
# File 'lib/arjdbc/oracle/adapter.rb', line 91 def self.emulate_booleans=(emulate); @@emulate_booleans = emulate; end |
.emulate_booleans? ⇒ Boolean
Boolean emulation can be disabled using :
ArJdbc::Oracle.emulate_booleans = false
87 |
# File 'lib/arjdbc/oracle/adapter.rb', line 87 def self.emulate_booleans?; @@emulate_booleans; end |
.jdbc_connection_class ⇒ Object
53 54 55 |
# File 'lib/arjdbc/oracle/adapter.rb', line 53 def self.jdbc_connection_class ::ActiveRecord::ConnectionAdapters::OracleJdbcConnection end |
.update_lob_values=(update) ⇒ Object
71 |
# File 'lib/arjdbc/oracle/adapter.rb', line 71 def self.update_lob_values=(update); @@update_lob_values = update; end |
.update_lob_values? ⇒ Boolean
This only applies when prepared statements are not used.
Updating records with LOB values (binary/text columns) in a separate statement can be disabled using :
ArJdbc::Oracle.update_lob_values = false
69 |
# File 'lib/arjdbc/oracle/adapter.rb', line 69 def self.update_lob_values?; @@update_lob_values; end |
Instance Method Details
#adapter_name ⇒ Object
121 122 123 |
# File 'lib/arjdbc/oracle/adapter.rb', line 121 def adapter_name ADAPTER_NAME end |
#add_column_options!(sql, options) ⇒ Object
342 343 344 345 346 347 348 |
# File 'lib/arjdbc/oracle/adapter.rb', line 342 def (sql, ) # handle case of defaults for CLOB columns, which would otherwise get "quoted" incorrectly if () && (column = [:column]) && column.type == :text sql << " DEFAULT #{quote(.delete(:default))}" end super end |
#add_limit_offset!(sql, options) ⇒ Object
Only used with (non-AREL) ActiveRecord 2.3.
245 246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/arjdbc/oracle/adapter.rb', line 245 def add_limit_offset!(sql, ) offset = [:offset] || 0 if limit = [:limit] sql.replace "SELECT * FROM " << "(select raw_sql_.*, rownum raw_rnum_ from (#{sql}) raw_sql_ where rownum <= #{offset + limit})" << " WHERE raw_rnum_ > #{offset}" elsif offset > 0 sql.replace "SELECT * FROM " << "(select raw_sql_.*, rownum raw_rnum_ from (#{sql}) raw_sql_)" << " WHERE raw_rnum_ > #{offset}" end end |
#add_order_by_for_association_limiting!(sql, options) ⇒ Object
ORDER BY clause for the passed order option.
Uses column aliases as defined by #distinct.
424 425 426 427 428 429 430 431 432 433 |
# File 'lib/arjdbc/oracle/adapter.rb', line 424 def add_order_by_for_association_limiting!(sql, ) return sql if [:order].blank? order_columns = extract_order_columns([:order]) do |columns| columns.map! { |s| $1 if s =~ / (.*)/ }; columns end order = order_columns.map { |s, i| "alias_#{i}__ #{s}" } # @see {#distinct} sql << "ORDER BY #{order.join(', ')}" end |
#change_column(table_name, column_name, type, options = {}) ⇒ Object
351 352 353 354 355 356 |
# File 'lib/arjdbc/oracle/adapter.rb', line 351 def change_column(table_name, column_name, type, = {}) change_column_sql = "ALTER TABLE #{quote_table_name(table_name)} " << "MODIFY #{quote_column_name(column_name)} #{type_to_sql(type, [:limit])}" (change_column_sql, ) execute(change_column_sql) end |
#change_column_default(table_name, column_name, default) ⇒ Object
337 338 339 |
# File 'lib/arjdbc/oracle/adapter.rb', line 337 def change_column_default(table_name, column_name, default) execute "ALTER TABLE #{quote_table_name(table_name)} MODIFY #{quote_column_name(column_name)} DEFAULT #{quote(default)}" end |
#charset ⇒ Object
460 461 462 |
# File 'lib/arjdbc/oracle/adapter.rb', line 460 def charset database_parameters['NLS_CHARACTERSET'] end |
#collation ⇒ Object
464 465 466 |
# File 'lib/arjdbc/oracle/adapter.rb', line 464 def collation database_parameters['NLS_COMP'] end |
#column_name_length ⇒ Object
166 |
# File 'lib/arjdbc/oracle/adapter.rb', line 166 def column_name_length; IDENTIFIER_LENGTH; end |
#columns(table_name, name = nil) ⇒ Object
NOTE: better to use current_schema instead of the configured one ?!
452 453 454 |
# File 'lib/arjdbc/oracle/adapter.rb', line 452 def columns(table_name, name = nil) @connection.columns_internal(table_name.to_s, nil, oracle_schema) end |
#columns_for_distinct(columns, orders) ⇒ Object
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'lib/arjdbc/oracle/adapter.rb', line 405 def columns_for_distinct(columns, orders) return columns if orders.blank? if orders.is_a?(Array) # AR 3.x vs 4.x orders = orders.map { |column| column.is_a?(String) ? column : column.to_sql } else orders = extract_order_columns(orders) end # construct a valid DISTINCT clause, ie. one that includes the ORDER BY columns, using # FIRST_VALUE such that the inclusion of these columns doesn't invalidate the DISTINCT order_columns = orders.map do |c, i| "FIRST_VALUE(#{c.split.first}) OVER (PARTITION BY #{columns} ORDER BY #{c}) AS alias_#{i}__" end columns = [ columns ]; columns.flatten! columns.push( *order_columns ).join(', ') end |
#create_table(name, options = {}) ⇒ Object
182 183 184 185 186 187 188 189 190 |
# File 'lib/arjdbc/oracle/adapter.rb', line 182 def create_table(name, = {}) super(name, ) unless [:id] == false seq_name = [:sequence_name] || default_sequence_name(name) start_value = [:sequence_start_value] || 10000 raise ActiveRecord::StatementInvalid.new("name #{seq_name} too long") if seq_name.length > table_alias_length execute "CREATE SEQUENCE #{quote_table_name(seq_name)} START WITH #{start_value}" end end |
#current_database ⇒ Object
262 263 264 |
# File 'lib/arjdbc/oracle/adapter.rb', line 262 def current_database @current_database ||= execute("SELECT sys_context('userenv', 'db_name') db FROM dual").first['db'] end |
#current_schema ⇒ Object
266 267 268 |
# File 'lib/arjdbc/oracle/adapter.rb', line 266 def current_schema execute("SELECT sys_context('userenv', 'current_schema') schema FROM dual").first['schema'] end |
#current_schema=(schema_owner) ⇒ Object
270 271 272 |
# File 'lib/arjdbc/oracle/adapter.rb', line 270 def current_schema=(schema_owner) execute("ALTER SESSION SET current_schema=#{schema_owner}") end |
#current_user ⇒ Object
258 259 260 |
# File 'lib/arjdbc/oracle/adapter.rb', line 258 def current_user @current_user ||= execute("SELECT sys_context('userenv', 'session_user') su FROM dual").first['su'] end |
#database_parameters ⇒ Object
468 469 470 471 472 473 474 |
# File 'lib/arjdbc/oracle/adapter.rb', line 468 def database_parameters return @database_parameters unless ( @database_parameters ||= {} ).empty? @connection.execute_query_raw("SELECT * FROM NLS_DATABASE_PARAMETERS") do |name, value| @database_parameters[name] = value end @database_parameters end |
#distinct(columns, order_by) ⇒ Object
SELECT DISTINCT clause for a given set of columns and a given ORDER BY clause.
Oracle requires the ORDER BY columns to be in the SELECT list for DISTINCT queries. However, with those columns included in the SELECT DISTINCT list, you won't actually get a distinct list of the column you want (presuming the column has duplicates with multiple values for the ordered-by columns. So we use the FIRST_VALUE function to get a single (first) value for each column, effectively making every row the same.
distinct("posts.id", "posts.created_at desc")
400 401 402 |
# File 'lib/arjdbc/oracle/adapter.rb', line 400 def distinct(columns, order_by) "DISTINCT #{columns_for_distinct(columns, order_by)}" end |
#drop_table(name, options = {}) ⇒ Object
205 206 207 208 209 210 211 212 |
# File 'lib/arjdbc/oracle/adapter.rb', line 205 def drop_table(name, = {}) outcome = super(name) return outcome if name == 'schema_migrations' seq_name = .key?(:sequence_name) ? # pass nil/false - no sequence [:sequence_name] : default_sequence_name(name) return outcome unless seq_name execute "DROP SEQUENCE #{quote_table_name(seq_name)}" rescue nil end |
#exec_insert(sql, name, binds, pk = nil, sequence_name = nil) ⇒ Object
737 738 739 740 741 742 743 744 |
# File 'lib/arjdbc/oracle/adapter.rb', line 737 def exec_insert(sql, name, binds, pk = nil, sequence_name = nil) if pk && use_insert_returning? if sql.is_a?(String) && sql.index('RETURNING') return exec_insert_returning(sql, name, binds, pk) end end super(sql, name, binds) # assume no generated id for table end |
#exec_insert_returning(sql, name, binds, pk = nil) ⇒ Object
746 747 748 749 750 751 752 753 |
# File 'lib/arjdbc/oracle/adapter.rb', line 746 def exec_insert_returning(sql, name, binds, pk = nil) sql = to_sql(sql, binds) if sql.respond_to?(:to_sql) if prepared_statements? log(sql, name, binds) { @connection.execute_insert_returning(sql, binds) } else log(sql, name) { @connection.execute_insert_returning(sql, nil) } end end |
#explain(arel, binds = []) ⇒ Object
589 590 591 592 593 594 |
# File 'lib/arjdbc/oracle/adapter.rb', line 589 def explain(arel, binds = []) sql = "EXPLAIN PLAN FOR #{to_sql(arel, binds)}" return if sql =~ /FROM all_/ exec_update(sql, 'EXPLAIN', binds) select_values("SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY)", 'EXPLAIN').join("\n") end |
#in_clause_length ⇒ Object Also known as: ids_in_list_limit
Prevent ORA-01795 for in clauses with more than 1000
155 156 157 |
# File 'lib/arjdbc/oracle/adapter.rb', line 155 def in_clause_length 1000 end |
#index_name_length ⇒ Object
165 |
# File 'lib/arjdbc/oracle/adapter.rb', line 165 def index_name_length; IDENTIFIER_LENGTH; end |
#indexes(table, name = nil) ⇒ Object
239 240 241 |
# File 'lib/arjdbc/oracle/adapter.rb', line 239 def indexes(table, name = nil) @connection.indexes(table, name, @connection.connection..user_name) end |
#insert(arel, name = nil, pk = nil, id_value = nil, sequence_name = nil, binds = []) ⇒ Object
723 724 725 726 727 728 729 730 731 732 733 734 |
# File 'lib/arjdbc/oracle/adapter.rb', line 723 def insert(arel, name = nil, pk = nil, id_value = nil, sequence_name = nil, binds = []) # NOTE: ActiveRecord::Relation calls our {#next_sequence_value} # (from its `insert`) and passes the returned id_value here ... sql, binds = sql_for_insert(to_sql(arel, binds), pk, id_value, sequence_name, binds) if id_value exec_update(sql, name, binds) return id_value else value = exec_insert(sql, name, binds, pk, sequence_name) id_value || last_inserted_id(value) end end |
#insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) ⇒ Object (protected)
696 697 698 699 700 701 702 703 704 705 706 707 708 709 |
# File 'lib/arjdbc/oracle/adapter.rb', line 696 def insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) # if PK is already pre-fetched from sequence or if there is no PK : if id_value || pk.nil? execute(sql, name) return id_value end if pk && use_insert_returning? # true by default on AR <= 3.0 sql = "#{sql} RETURNING #{quote_column_name(pk)} INTO ?" exec_insert_returning(sql, name, nil, pk) else execute(sql, name) end end |
#jdbc_column_class ⇒ Object
58 |
# File 'lib/arjdbc/oracle/adapter.rb', line 58 def jdbc_column_class; ::ActiveRecord::ConnectionAdapters::OracleColumn end |
#modify_types(types) ⇒ Object
146 147 148 149 150 151 152 |
# File 'lib/arjdbc/oracle/adapter.rb', line 146 def modify_types(types) super(types) NATIVE_DATABASE_TYPES.each do |key, value| types[key] = value.dup end types end |
#native_database_types ⇒ Object
142 143 144 |
# File 'lib/arjdbc/oracle/adapter.rb', line 142 def native_database_types super.merge(NATIVE_DATABASE_TYPES) end |
#next_sequence_value(sequence_name) ⇒ Object
Returns the next sequence value from a sequence generator. Not generally called directly; used by ActiveRecord to get the next primary key value when inserting a new database record (see #prefetch_primary_key?).
654 655 656 657 658 659 660 |
# File 'lib/arjdbc/oracle/adapter.rb', line 654 def next_sequence_value(sequence_name) # if sequence_name is set to :autogenerated then it means that primary key will be populated by trigger return nil if sequence_name == AUTOGENERATED_SEQUENCE_NAME sequence_name = quote_table_name(sequence_name) sql = "SELECT #{sequence_name}.NEXTVAL id FROM dual" log(sql, 'SQL') { @connection.next_sequence_value(sequence_name) } end |
#prefetch_primary_key?(table_name = nil) ⇒ Boolean
Returns true for Oracle adapter (since Oracle requires primary key values to be pre-fetched before insert).
609 610 611 612 613 614 615 616 617 618 619 620 |
# File 'lib/arjdbc/oracle/adapter.rb', line 609 def prefetch_primary_key?(table_name = nil) return true if table_name.nil? do_not_prefetch_hash = @@do_not_prefetch_primary_key do_not_prefetch = do_not_prefetch_hash[ table_name = table_name.to_s ] if do_not_prefetch.nil? owner, desc_table_name, db_link = @connection.describe(table_name, default_owner) do_not_prefetch_hash[table_name] = do_not_prefetch = ! has_primary_key?(table_name, owner, desc_table_name, db_link) || has_primary_key_trigger?(table_name, owner, desc_table_name, db_link) end ! do_not_prefetch end |
#primary_key(table_name) ⇒ Object
Returns just a table's primary key
690 691 692 693 |
# File 'lib/arjdbc/oracle/adapter.rb', line 690 def primary_key(table_name) pk_and_sequence = pk_and_sequence_for(table_name) pk_and_sequence && pk_and_sequence.first end |
#quote(value, column = nil) ⇒ Object
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 |
# File 'lib/arjdbc/oracle/adapter.rb', line 503 def quote(value, column = nil) return value if sql_literal?(value) column_type = column && column.type if column_type == :text || column_type == :binary return 'NULL' if value.nil? || value == '' if update_lob_value?(value, column) if /(.*?)\([0-9]+\)/ =~ ( sql_type = column.sql_type ) %Q{empty_#{ $1.downcase }()} else %Q{empty_#{ sql_type.respond_to?(:downcase) ? sql_type.downcase : 'blob' }()} end else "'#{quote_string(value.to_s)}'" end elsif column_type == :xml "XMLTYPE('#{quote_string(value)}')" # XMLTYPE ? elsif column_type == :raw quote_raw(value) else if column.respond_to?(:primary) && column.primary && column.klass != String return value.to_i.to_s end if column_type == :datetime || column_type == :time if value.acts_like?(:time) %Q{TO_DATE('#{get_time(value).strftime("%Y-%m-%d %H:%M:%S")}','YYYY-MM-DD HH24:MI:SS')} else value.blank? ? 'NULL' : %Q{DATE'#{value}'} # assume correctly formated DATE (string) end elsif ( like_date = value.acts_like?(:date) ) || column_type == :date if value.acts_like?(:time) # value.respond_to?(:strftime) %Q{DATE'#{get_time(value).strftime("%Y-%m-%d")}'} elsif like_date %Q{DATE'#{quoted_date(value)}'} # DATE 'YYYY-MM-DD' else value.blank? ? 'NULL' : %Q{DATE'#{value}'} # assume correctly formated DATE (string) end elsif ( like_time = value.acts_like?(:time) ) || column_type == :timestamp if like_time %Q{TIMESTAMP'#{quoted_date(value, true)}'} # TIMESTAMP 'YYYY-MM-DD HH24:MI:SS.FF' else value.blank? ? 'NULL' : %Q{TIMESTAMP'#{value}'} # assume correctly formated TIMESTAMP (string) end else super end end end |
#quote_column_name(name) ⇒ Object
484 485 486 487 488 489 490 491 492 493 494 495 |
# File 'lib/arjdbc/oracle/adapter.rb', line 484 def quote_column_name(name) # if only valid lowercase column characters in name if ( name = name.to_s ) =~ /\A[a-z][a-z_0-9\$#]*\Z/ # putting double-quotes around an identifier causes Oracle to treat the # identifier as case sensitive (otherwise assumes case-insensitivity) ! # all upper case is an exception, where double-quotes are meaningless "\"#{name.upcase}\"" # name.upcase else # remove double quotes which cannot be used inside quoted identifier "\"#{name.gsub('"', '')}\"" end end |
#quote_raw(value) ⇒ Object
565 566 567 568 |
# File 'lib/arjdbc/oracle/adapter.rb', line 565 def quote_raw(value) value = value.unpack('C*') if value.is_a?(String) "'#{value.map { |x| "%02X" % x }.join}'" end |
#quote_table_name(name) ⇒ Object
479 480 481 |
# File 'lib/arjdbc/oracle/adapter.rb', line 479 def quote_table_name(name) name.to_s.split('.').map{ |n| n.split('@').map{ |m| quote_column_name(m) }.join('@') }.join('.') end |
#quoted_date(value, time = nil) ⇒ Object
Quote date/time values for use in SQL input. Includes milliseconds if the value is a Time responding to usec.
556 557 558 559 560 561 562 563 |
# File 'lib/arjdbc/oracle/adapter.rb', line 556 def quoted_date(value, time = nil) if time || ( time.nil? && value.acts_like?(:time) ) usec = value.respond_to?(:usec) && (value.usec / 10000.0).round # .428000 -> .43 return "#{get_time(value).to_s(:db)}.#{sprintf("%02d", usec)}" if usec # value.strftime("%Y-%m-%d %H:%M:%S") end value.to_s(:db) end |
#release_savepoint(name = nil) ⇒ Object
275 276 277 |
# File 'lib/arjdbc/oracle/adapter.rb', line 275 def release_savepoint(name = nil) # no RELEASE SAVEPOINT statement in Oracle (JDBC driver throws "Unsupported feature") end |
#remove_column(table_name, *column_names) ⇒ Object Also known as: remove_columns
367 368 369 |
# File 'lib/arjdbc/oracle/adapter.rb', line 367 def remove_column(table_name, column_name, type = nil, = {}) do_remove_column(table_name, column_name) end |
#rename_column(table_name, column_name, new_column_name) ⇒ Object
359 360 361 362 |
# File 'lib/arjdbc/oracle/adapter.rb', line 359 def rename_column(table_name, column_name, new_column_name) execute "ALTER TABLE #{quote_table_name(table_name)} " << "RENAME COLUMN #{quote_column_name(column_name)} TO #{quote_column_name(new_column_name)}" end |
#rename_table(name, new_name) ⇒ Object
193 194 195 196 197 198 199 200 201 202 |
# File 'lib/arjdbc/oracle/adapter.rb', line 193 def rename_table(name, new_name) if new_name.to_s.length > table_name_length raise ArgumentError, "New table name '#{new_name}' is too long; the limit is #{table_name_length} characters" end if "#{new_name}_seq".to_s.length > sequence_name_length raise ArgumentError, "New sequence name '#{new_name}_seq' is too long; the limit is #{sequence_name_length} characters" end execute "RENAME #{quote_table_name(name)} TO #{quote_table_name(new_name)}" execute "RENAME #{quote_table_name("#{name}_seq")} TO #{quote_table_name("#{new_name}_seq")}" rescue nil end |
#select(sql, name = nil, binds = []) ⇒ Object
596 597 598 599 600 601 |
# File 'lib/arjdbc/oracle/adapter.rb', line 596 def select(sql, name = nil, binds = []) result = super # AR::Result (4.0) or Array (<= 3.2) result.columns.delete('raw_rnum_') if result.respond_to?(:columns) result.each { |row| row.delete('raw_rnum_') } # Hash rows even for AR::Result result end |
#sequence_name_length ⇒ Object
167 |
# File 'lib/arjdbc/oracle/adapter.rb', line 167 def sequence_name_length; IDENTIFIER_LENGTH end |
#sql_for_insert(sql, pk, id_value, sequence_name, binds) ⇒ Object
713 714 715 716 717 718 719 720 |
# File 'lib/arjdbc/oracle/adapter.rb', line 713 def sql_for_insert(sql, pk, id_value, sequence_name, binds) unless id_value || pk.nil? if pk && use_insert_returning? sql = "#{sql} RETURNING #{quote_column_name(pk)} INTO ?" end end [ sql, binds ] end |
#supports_explain? ⇒ Boolean
580 |
# File 'lib/arjdbc/oracle/adapter.rb', line 580 def supports_explain?; true end |
#supports_migrations? ⇒ Boolean
571 |
# File 'lib/arjdbc/oracle/adapter.rb', line 571 def supports_migrations?; true end |
#supports_primary_key? ⇒ Boolean
574 |
# File 'lib/arjdbc/oracle/adapter.rb', line 574 def supports_primary_key?; true end |
#supports_savepoints? ⇒ Boolean
577 |
# File 'lib/arjdbc/oracle/adapter.rb', line 577 def supports_savepoints?; true end |
#supports_views? ⇒ Boolean
583 |
# File 'lib/arjdbc/oracle/adapter.rb', line 583 def supports_views?; true end |
#table_alias_length ⇒ Object
maximum length of Oracle identifiers is 30
163 |
# File 'lib/arjdbc/oracle/adapter.rb', line 163 def table_alias_length; IDENTIFIER_LENGTH; end |
#table_definition(*args) ⇒ Object
105 106 107 |
# File 'lib/arjdbc/oracle/adapter.rb', line 105 def table_definition(*args) new_table_definition(TableDefinition, *args) end |
#table_name_length ⇒ Object
164 |
# File 'lib/arjdbc/oracle/adapter.rb', line 164 def table_name_length; IDENTIFIER_LENGTH; end |
#tables ⇒ Object
447 448 449 |
# File 'lib/arjdbc/oracle/adapter.rb', line 447 def tables @connection.tables(nil, oracle_schema) end |
#tablespace(table_name) ⇒ Object
456 457 458 |
# File 'lib/arjdbc/oracle/adapter.rb', line 456 def tablespace(table_name) select_value "SELECT tablespace_name FROM user_tables WHERE table_name='#{table_name.to_s.upcase}'" end |
#temporary_table?(table_name) ⇒ Boolean
443 444 445 |
# File 'lib/arjdbc/oracle/adapter.rb', line 443 def temporary_table?(table_name) select_value("SELECT temporary FROM user_tables WHERE table_name = '#{table_name.upcase}'") == 'Y' end |
#truncate(table_name, name = nil) ⇒ Object
585 586 587 |
# File 'lib/arjdbc/oracle/adapter.rb', line 585 def truncate(table_name, name = nil) execute "TRUNCATE TABLE #{quote_table_name(table_name)}", name end |
#type_to_sql(type, limit = nil, precision = nil, scale = nil) ⇒ Object
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/arjdbc/oracle/adapter.rb', line 215 def type_to_sql(type, limit = nil, precision = nil, scale = nil) case type.to_sym when :binary # { BLOB | BINARY LARGE OBJECT } [ ( length [{K |M |G }] ) ] # although Oracle does not like limit (length) with BLOB (or CLOB) : # # CREATE TABLE binaries (data BLOB, short_data BLOB(1024)); # ORA-00907: missing right parenthesis * # # TODO do we need to worry about NORMAL vs. non IN-TABLE BLOBs ?! # http://dba.stackexchange.com/questions/8770/improve-blob-writing-performance-in-oracle-11g # - if the LOB is smaller than 3900 bytes it can be stored inside the # table row; by default this is enabled, # unless you specify DISABLE STORAGE IN ROW # - normal LOB - stored in a separate segment, outside of table, # you may even put it in another tablespace; super(type, nil, nil, nil) when :text super(type, nil, nil, nil) else super end end |
#unquote_table_name(name) ⇒ Object
497 498 499 500 |
# File 'lib/arjdbc/oracle/adapter.rb', line 497 def unquote_table_name(name) name = name[1...-1] if name[0, 1] == '"' name.upcase == name ? name.downcase : name end |
#update_lob_value?(value, column = nil) ⇒ Boolean
75 76 77 |
# File 'lib/arjdbc/oracle/adapter.rb', line 75 def update_lob_value?(value, column = nil) Oracle.update_lob_values? && ! prepared_statements? && ! ( value.nil? || value == '' ) end |
#use_insert_returning? ⇒ Boolean
767 768 769 770 771 772 |
# File 'lib/arjdbc/oracle/adapter.rb', line 767 def use_insert_returning? if @use_insert_returning.nil? @use_insert_returning = false end @use_insert_returning end |