aboutsummaryrefslogtreecommitdiffstats
path: root/railties/configs/databases/oracle.yml
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-06-16 15:56:59 +0200
committerJosé Valim <jose.valim@gmail.com>2009-06-19 16:10:42 +0200
commitced68c7430216424419ecb4525d3bc6b6847f9c6 (patch)
tree15165fb2585dbe6d351d694361a0dec16b4c8bd9 /railties/configs/databases/oracle.yml
parent42e51ea9c03cdd4833585239c239c420cf808758 (diff)
downloadrails-ced68c7430216424419ecb4525d3bc6b6847f9c6.tar.gz
rails-ced68c7430216424419ecb4525d3bc6b6847f9c6.tar.bz2
rails-ced68c7430216424419ecb4525d3bc6b6847f9c6.zip
App generator is working using new generators (except for templates).
Diffstat (limited to 'railties/configs/databases/oracle.yml')
-rw-r--r--railties/configs/databases/oracle.yml39
1 files changed, 0 insertions, 39 deletions
diff --git a/railties/configs/databases/oracle.yml b/railties/configs/databases/oracle.yml
deleted file mode 100644
index a1883f6256..0000000000
--- a/railties/configs/databases/oracle.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-# Oracle/OCI 8i, 9, 10g
-#
-# Requires Ruby/OCI8:
-# http://rubyforge.org/projects/ruby-oci8/
-#
-# Specify your database using any valid connection syntax, such as a
-# tnsnames.ora service name, or a SQL connect url string of the form:
-#
-# //host:[port][/service name]
-#
-# By default prefetch_rows (OCI_ATTR_PREFETCH_ROWS) is set to 100. And
-# until true bind variables are supported, cursor_sharing is set by default
-# to 'similar'. Both can be changed in the configation below; the defaults
-# are equivalent to specifying:
-#
-# prefetch_rows: 100
-# cursor_sharing: similar
-#
-
-development:
- adapter: oracle
- database: <%= app_name %>_development
- username: <%= app_name %>
- password:
-
-# Warning: The database defined as "test" will be erased and
-# re-generated from your development database when you run "rake".
-# Do not set this db to the same as development or production.
-test:
- adapter: oracle
- database: <%= app_name %>_test
- username: <%= app_name %>
- password:
-
-production:
- adapter: oracle
- database: <%= app_name %>_production
- username: <%= app_name %>
- password: