From 9b9a0908e5a834d981bd095099d9cefc3abdb226 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 16 Mar 2006 03:20:46 +0000 Subject: Oracle adapter gets some love #4230 [schoenm@earthlink.net] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3889 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/CHANGELOG | 8 ++++++++ .../connection_adapters/oracle_adapter.rb | 19 +++++++++++++++---- activerecord/test/base_test.rb | 7 +++++-- 3 files changed, 28 insertions(+), 6 deletions(-) (limited to 'activerecord') diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index f20c6ff715..8dd5a86360 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,13 @@ *SVN* +* Oracle adapter gets some love #4230 [schoenm@earthlink.net] + + * Changes :text to CLOB rather than BLOB [Moses Hohman] + * Fixes an issue with nil numeric length/scales (several) + * Implements support for XMLTYPE columns [wilig / Kubo Takehiro] + * Tweaks a unit test to get it all green again + * Adds support for #current_database + * Added Base.abstract_class? that marks which classes are not part of the Active Record hierarchy #3704 [Rick Olson] class CachedModel < ActiveRecord::Base diff --git a/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb b/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb index 7489fac327..3291fac455 100644 --- a/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb @@ -108,7 +108,8 @@ begin when /char/i : :string when /num|float|double|dec|real|int/i : @scale == 0 ? :integer : :float when /date|time/i : @name =~ /_at$/ ? :time : :datetime - when /lob/i : :binary + when /clob/i : :text + when /blob/i : :binary end end @@ -178,7 +179,7 @@ begin { :primary_key => "NUMBER(38) NOT NULL PRIMARY KEY", :string => { :name => "VARCHAR2", :limit => 255 }, - :text => { :name => "BLOB" }, + :text => { :name => "CLOB" }, :integer => { :name => "NUMBER", :limit => 38 }, :float => { :name => "NUMBER" }, :datetime => { :name => "DATE" }, @@ -316,6 +317,10 @@ begin # # see: abstract/schema_statements.rb + def current_database #:nodoc: + select_one("select sys_context('userenv','db_name') db from dual")["db"] + end + def tables(name = nil) #:nodoc: select_all("select lower(table_name) from user_tables").inject([]) do | tabs, t | tabs << t.to_a.first.last @@ -368,8 +373,8 @@ begin oracle_downcase(row['column_name']), row['data_default'], row['data_type'], - row['length'].to_i, - row['scale'].to_i, + (l = row['length']).nil? ? nil : l.to_i, + (s = row['scale']).nil? ? nil : s.to_i, row['nullable'] == 'Y' ) end @@ -509,6 +514,12 @@ begin case do_ocicall(@ctx) { @parms[i - 1].attrGet(OCI_ATTR_DATA_TYPE) } when 8 : @stmt.defineByPos(i, String, 65535) # Read LONG values when 187 : @stmt.defineByPos(i, OraDate) # Read TIMESTAMP values + when 108 + if @parms[i - 1].attrGet(OCI_ATTR_TYPE_NAME) == 'XMLTYPE' + @stmt.defineByPos(i, String, 65535) + else + raise 'unsupported datatype' + end else define_a_column_pre_ar i end end diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb index de08118240..40782729d9 100755 --- a/activerecord/test/base_test.rb +++ b/activerecord/test/base_test.rb @@ -1172,14 +1172,17 @@ class BasicsTest < Test::Unit::TestCase assert xml.include?(%(The First Topic)) assert xml.include?(%(David)) assert xml.include?(%(1)) - assert xml.include?(%(false)), "Approved should be a boolean" assert xml.include?(%(0)) - assert xml.include?(%(#{bonus_time_in_current_timezone})) assert xml.include?(%(#{written_on_in_current_timezone})) assert xml.include?(%(Have a nice day)) assert xml.include?(%(david@loudthinking.com)) assert xml.include?(%()) assert xml.include?(%(2004-04-15)) + # Oracle doesn't have true boolean or time-only fields + unless current_adapter?(:OracleAdapter) + assert xml.include?(%(false)), "Approved should be a boolean" + assert xml.include?(%(#{bonus_time_in_current_timezone})) + end end def test_to_xml_skipping_attributes -- cgit v1.2.3