aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-24 14:01:35 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-24 14:01:35 +0000
commit14ea312808599001674784a839bf7cf5a8eea872 (patch)
tree9875456d3eba2ceb2f86909ee280333e2dfefa94 /activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
parent1ae0a53d861c43dff8883fc956a08404c23f180c (diff)
downloadrails-14ea312808599001674784a839bf7cf5a8eea872.tar.gz
rails-14ea312808599001674784a839bf7cf5a8eea872.tar.bz2
rails-14ea312808599001674784a839bf7cf5a8eea872.zip
Made Oracle a first-class connection adapter by adhering closer to idiomatic Oracle style #1798 [The Gang of Oracles]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1912 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract_adapter.rb')
-rwxr-xr-xactiverecord/lib/active_record/connection_adapters/abstract_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
index ff34c63fa1..7a680c3101 100755
--- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
@@ -279,7 +279,7 @@ module ActiveRecord
def columns(table_name, name = nil) end
# Returns the last auto-generated ID from the affected table.
- def insert(sql, name = nil, pk = nil, id_value = nil) end
+ def insert(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) end
# Executes the update statement and returns the number of rows affected.
def update(sql, name = nil) end