Updated the database.yml file generated for ibm_db to the latest version of DB2 and the gem.

[#3852 state:committed]

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
This commit is contained in:
Antonio Cangiano 2010-02-04 12:21:27 -05:00 committed by Jeremy Kemper
parent 25b6b95459
commit 6b3fb38461

@ -4,23 +4,32 @@
# http://rubyforge.org/projects/rubyibm/ # http://rubyforge.org/projects/rubyibm/
# #
# To install the ibm_db gem: # To install the ibm_db gem:
#
# On Linux: # On Linux:
# Source the db2profile file and set the necessary environment variables:
#
# . /home/db2inst1/sqllib/db2profile # . /home/db2inst1/sqllib/db2profile
# export IBM_DB_DIR=/opt/ibm/db2/V9.1 # export IBM_DB_INCLUDE=/opt/ibm/db2/V9.7/include
# export IBM_DB_LIB=/opt/ibm/db2/V9.1/lib32 # export IBM_DB_LIB=/opt/ibm/db2/V9.7/lib32
# gem install ibm_db
# #
# Then issue the command: gem install ibm_db # On Mac OS X 10.5:
# . /home/db2inst1/sqllib/db2profile
# export IBM_DB_INCLUDE=/opt/ibm/db2/V9.7/include
# export IBM_DB_LIB=/opt/ibm/db2/V9.7/lib32
# export ARCHFLAGS="-arch i386"
# gem install ibm_db
#
# On Mac OS X 10.6:
# . /home/db2inst1/sqllib/db2profile
# export IBM_DB_INCLUDE=/opt/ibm/db2/V9.7/include
# export IBM_DB_LIB=/opt/ibm/db2/V9.7/lib64
# export ARCHFLAGS="-arch x86_64"
# gem install ibm_db
# #
# On Windows: # On Windows:
# Issue the command: gem install ibm_db # Issue the command: gem install ibm_db
# If prompted, select the mswin32 option
# #
# For more details on the installation refer to http://rubyforge.org/docman/view.php/2361/7682/IBM_DB_GEM.pdf # For more details on the installation and the connection parameters below,
# # please refer to the latest documents at http://rubyforge.org/docman/?group_id=2361
# For more details on the connection parameters below refer to:
# http://rubyibm.rubyforge.org/docs/adapter/0.9.0/rdoc/classes/ActiveRecord/ConnectionAdapters/IBM_DBAdapter.html
development: development:
adapter: ibm_db adapter: ibm_db
@ -52,7 +61,7 @@ production:
adapter: ibm_db adapter: ibm_db
username: db2inst1 username: db2inst1
password: password:
database: <%= app_name[0,4] %>_prd database: <%= app_name[0,8] %>
#schema: db2inst1 #schema: db2inst1
#host: localhost #host: localhost
#port: 50000 #port: 50000