我的系统是 windows server 2003 企业版已经打了 sp1 按照网上的文章安装了最新的 railsinstaller 后,使用默认配置情况下(即 sqllite)写了个简单的 helloworld 成功,接着我想按照网上文章试着改变数据库连接最新 mysql 的社区服务器版于是 1 update gem 到了 1.8.24,此时如果 gem list 是找不到 mysql2 这一项的 2 拷贝 C:\Program Files\MySQL\MySQL Server 5.5\lib 下的两个 mysql 库文件(libmysql.dll 和 libmysql.lib) 到了 C:\RailsInstaller\Ruby1.9.3\bin 中 3 执行了网上说的 gem install mysql2 -- '--with-mysql-dir="C:\Program Files\MySQL\MySQL Server 5.5"'命令,完毕后执行 gem list 能够看到列表中有 mysql2 4 更改了 database.yml 中的配置项,见下: development: adapter: mysql2 encoding: utf8 database: railtest1 reconnect: false username: test password: test host: 127.0.0.1 pool: 5 5 执行 rails server 后,启动 localhost:3000 看到网页点击 About your application’s environment 出现错误信息即 ActiveRecord::ConnectionNotEstablished
请问各位大大,还有什么没有做的或者我说明不到位的步骤么?请帮助我解决这个问题,无限感激