rails/ruby database.yml _Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > rails/ruby database.yml

rails/ruby database.yml

 2012/4/18 23:20:29  chen_miao  程序员俱乐部  我要评论(0)
  • 摘要:#开发模式development:adapter:mysql2#数据版本database:zyt#数据库名host:localhost#数据库主机名username:root#数据库用户名password:#数据库密码pool:5timeout:5000#Warning:Thedatabasedefinedas"test"willbeerasedand#re-generatedfromyourdevelopmentdatabasewhenyourun"rake"
  • 标签:rails Ruby database ASE

#开发模式

development:
? adapter: mysql2

??#?数据版本??
? database: zyt

?#数据库名
? host:?localhost

?#?数据库主机名
? username: root

?#?数据库用户名
? password:
?#数据库密码

? pool: 5

? timeout: 5000

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
#测试模式

test:
? adapter: mysql2
? database: zyt
? host: 192.168.0.226
? username: root
? password:
? pool: 5
? timeout: 5000

?

#生产模式

production:
? adapter: mysql2
? database: zyt
? host: 192.168.0.226
? username: root
? password:
? pool: 5
? timeout: 5000

发表评论
用户名: 匿名