aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-02 01:15:41 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-02 01:15:41 +0000
commit6a3f4c932a50eff696f4e8cb646249afaf8f47a1 (patch)
treeb6da4fa60a5aa9530198acf4714ead02f513b30d /activerecord/lib/active_record.rb
parent8fdb4bc8f61391be185c1e65e37e83535f680a8c (diff)
downloadrails-6a3f4c932a50eff696f4e8cb646249afaf8f47a1.tar.gz
rails-6a3f4c932a50eff696f4e8cb646249afaf8f47a1.tar.bz2
rails-6a3f4c932a50eff696f4e8cb646249afaf8f47a1.zip
Added Sybase database adapter that relies on the Sybase Open Client bindings (see http://raa.ruby-lang.org/project/sybase-ctlib) (closes #3765) [John Sheets]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3734 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rwxr-xr-xactiverecord/lib/active_record.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index 6acdbd968a..c0c81b335d 100755
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -68,7 +68,7 @@ ActiveRecord::Base.class_eval do
end
unless defined?(RAILS_CONNECTION_ADAPTERS)
- RAILS_CONNECTION_ADAPTERS = %w(mysql postgresql sqlite firebird sqlserver db2 oracle)
+ RAILS_CONNECTION_ADAPTERS = %w(mysql postgresql sqlite firebird sqlserver db2 oracle sybase)
end
RAILS_CONNECTION_ADAPTERS.each do |adapter|