instruct user to install using Gem file in database.yml templete issue #1103

This commit is contained in:
Vishnu Atrai
2011-05-17 23:16:33 +05:30
parent f627da15f4
commit 0e1e831ecb
6 changed files with 22 additions and 2 deletions

View File

@@ -2,7 +2,10 @@
#
# Get the bindings:
# gem install ruby-frontbase
#
# Configure Using Gemfile
# gem 'ruby-frontbase'
#
development:
adapter: frontbase
host: localhost

View File

@@ -28,6 +28,9 @@
# On Windows:
# Issue the command: gem install ibm_db
#
# Configure Using Gemfile
# gem 'ibm_db'
#
# 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

View File

@@ -3,6 +3,9 @@
# Install the MySQL driver:
# gem install activerecord-jdbcmysql-adapter
#
# Configure Using Gemfile
# gem 'activerecord-jdbcmysql-adapter'
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development:

View File

@@ -8,6 +8,10 @@
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'activerecord-jdbcpostgresql-adapter'
development:
adapter: jdbcpostgresql
encoding: unicode

View File

@@ -1,6 +1,9 @@
# SQLite version 3.x
# gem 'activerecord-jdbcsqlite3-adapter'
#
# Configure Using Gemfile
# gem 'activerecord-jdbcsqlite3-adapter'
#
development:
adapter: jdbcsqlite3
database: db/development.sqlite3

View File

@@ -8,6 +8,10 @@
# gem install pg
# Choose the win32 build.
# Install PostgreSQL and put its /bin directory on your path.
#
# Configure Using Gemfile
# gem 'pg'
#
development:
adapter: postgresql
encoding: unicode