配置几种数据库的连接

2011-09-23  王少平 

配置数据库连接:config/database.yml
# SQLite3
development:
  adapter: sqlite3
  database: db/development.sqlite3
  pool: 5
  timeout: 5000

# MySQL
development:
  adapter: mysql2
  encoding: utf8
  database: blog_development
  pool: 5
  username: root
  password: *******
  socket: /tmp/mysql.sock

# postgresql
development:
  adapter: postgresql
  encoding: unicode
  database: blog_development
  pool: 5
  username: blog
  password: *******

其它数据库待继...
330°/3307 人阅读/0 条评论 发表评论

登录 后发表评论