这个错那了?很久都没有解决

这个错那了?很久都没有解决

MissingSourceFile in AppController#greeting
no such file to load -- sqlite3
RAILS_ROOT: C:/Documents and Settings/Administrator/rubydev/hello

Application Trace | Framework Trace | Full Trace


This error occurred while loading the following files:
 sqlite3
Rails2.0把默认的数据库换成了Sqlite3
2种解决办法:
1.修改你的database.yml,改成你正在用的数据库
2.装一个sqlite
我是修改database.yml,
EG:
development:
 adapter: mysql
 database: test
 host:  localhost
 port:  3306
 username: root
 password: root
剩下的2块COPY
我也碰到过这个错误,我的解决办法是……装了个1.7 o(∩_∩)o...
gem i sqlite3-ruby

下载sqlite3.exe和sqlite3.dll放到 x:\ruby\bin\

就可以了,SQLite3的数据库用起来比较简单,几乎不用怎么配置。