Froze rails gems
[depot.git] / vendor / rails / railties / configs / databases / oracle.yml
1 # Oracle/OCI 8i, 9, 10g
2 #
3 # Requires Ruby/OCI8:
4 # http://rubyforge.org/projects/ruby-oci8/
5 #
6 # Specify your database using any valid connection syntax, such as a
7 # tnsnames.ora service name, or a SQL connect url string of the form:
8 #
9 # //host:[port][/service name]
10 #
11 # By default prefetch_rows (OCI_ATTR_PREFETCH_ROWS) is set to 100. And
12 # until true bind variables are supported, cursor_sharing is set by default
13 # to 'similar'. Both can be changed in the configation below; the defaults
14 # are equivalent to specifying:
15 #
16 # prefetch_rows: 100
17 # cursor_sharing: similar
18 #
19
20 development:
21 adapter: oracle
22 database: <%= app_name %>_development
23 username: <%= app_name %>
24 password:
25
26 # Warning: The database defined as "test" will be erased and
27 # re-generated from your development database when you run "rake".
28 # Do not set this db to the same as development or production.
29 test:
30 adapter: oracle
31 database: <%= app_name %>_test
32 username: <%= app_name %>
33 password:
34
35 production:
36 adapter: oracle
37 database: <%= app_name %>_production
38 username: <%= app_name %>
39 password: