Froze rails gems
[depot.git] / vendor / rails / railties / configs / databases / ibm_db.yml
1 # IBM Dataservers
2 #
3 # Home Page
4 # http://rubyforge.org/projects/rubyibm/
5 #
6 # To install the ibm_db gem:
7 # On Linux:
8 # Source the db2profile file and set the necessary environment variables:
9 #
10 # . /home/db2inst1/sqllib/db2profile
11 # export IBM_DB_DIR=/opt/ibm/db2/V9.1
12 # export IBM_DB_LIB=/opt/ibm/db2/V9.1/lib32
13 #
14 # Then issue the command: gem install ibm_db
15 #
16 # On Windows:
17 # Issue the command: gem install ibm_db
18 # If prompted, select the mswin32 option
19 #
20 # For more details on the installation refer to http://rubyforge.org/docman/view.php/2361/7682/IBM_DB_GEM.pdf
21 #
22 # For more details on the connection parameters below refer to:
23 # http://rubyibm.rubyforge.org/docs/adapter/0.9.0/rdoc/classes/ActiveRecord/ConnectionAdapters/IBM_DBAdapter.html
24
25 development:
26 adapter: ibm_db
27 username: db2inst1
28 password:
29 database: <%= app_name[0,4] %>_dev
30 #schema: db2inst1
31 #host: localhost
32 #port: 50000
33 #account: my_account
34 #app_user: my_app_user
35 #application: my_application
36 #workstation: my_workstation
37
38 test:
39 adapter: ibm_db
40 username: db2inst1
41 password:
42 database: <%= app_name[0,4] %>_tst
43 #schema: db2inst1
44 #host: localhost
45 #port: 50000
46 #account: my_account
47 #app_user: my_app_user
48 #application: my_application
49 #workstation: my_workstation
50
51 production:
52 adapter: ibm_db
53 username: db2inst1
54 password:
55 database: <%= app_name[0,4] %>_prd
56 #schema: db2inst1
57 #host: localhost
58 #port: 50000
59 #account: my_account
60 #app_user: my_app_user
61 #application: my_application
62 #workstation: my_workstation