Could Rails 3.0's "gem install rails" or "bundle install" install a sqlite3.dll as well?
Rails 3.0 installation on Windows was almost seamless, except it'd still开发者_运维百科 just say sqlite3.dll is missing and I think the solution is to find it and then put into one of your path such as c:\ruby192\bin or c:\windows ?
Supposedly, can gem install
or bundle install
actually put it somewhere that is usable?
SQLite itself is a third-party library and it cannot be packaged within driver. As an example: should RubyGems also install MySQL when installing ruby-mysql
? The answer is, no.
精彩评论