diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-07 14:06:00 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-07 14:06:00 +0000 |
commit | 336c2cbb8f728825139f2ab94b96726935ea18a1 (patch) | |
tree | 1943ecb94336aae84d458a97bd376306dac1118d /activerecord/CHANGELOG | |
parent | 8382e6e50681fef860fb2856af12fa72853a8488 (diff) | |
download | rails-336c2cbb8f728825139f2ab94b96726935ea18a1.tar.gz rails-336c2cbb8f728825139f2ab94b96726935ea18a1.tar.bz2 rails-336c2cbb8f728825139f2ab94b96726935ea18a1.zip |
Added an Oracle adapter that works with the Oracle bindings by Yoshida (http://raa.ruby-lang.org/project/oracle/) #564 [Maik Schmidt]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@522 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index cb8217b3e1..1fb60d0e6d 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,20 @@ *SVN* +* Added an Oracle adapter that works with the Oracle bindings by Yoshida (http://raa.ruby-lang.org/project/oracle/) #564 [Maik Schmidt] + + A number of caveats: + + 1. You have to create a sequence for every table that need an auto-generated primary key. + The sequence name is built by appending "_id" to the according table_name, + i.e. if you have a table called "employees", you have to create a sequence called "employees_id". + + 2. The data type TIME is not supported, because Oracle does not support it. + + 3. Binary data (BLOBs etc.) are currently not supported. Will be fixed soon. + + 4. LIMIT clauses with OFFSET are not supported, because I could not find a way to simulate this behaviour using ROWNUM and "SELECT *". + + * Fixed Base#clone for use with PostgreSQL #565 [hanson@surgery.wisc.edu] |