On May 26, 7:33 am, timmickelson <[email protected]> wrote: > Parth B wrote: > > > After I try "rails server" line the first time it asks me to do a "bundle > > install" which I do, and then the next time I try "rails server" I get the > > sqlite3.dll error. > > > Any help would be greatly appreciated. > > http://www.fix-all-dll-errors.com/sqlite3.dll/ > > You can fix it from the link given above. It will solve the problem.
Actually, more accurate is the post install message the gem installation gives you: >gem install sqlite3 ============================================================================= You've installed the binary version of sqlite3. It was built using SQLite3 version 3.7.3. It's recommended to use the exact same version to avoid potential issues. At the time of building this gem, the necessary DLL files where available in the following download: http://www.sqlite.org/sqlitedll-3_7_3.zip You can put the sqlite3.dll available in this package in your Ruby bin directory, for example C:\Ruby\bin ============================================================================= Successfully installed sqlite3-1.3.3-x86-mingw32 1 gem installed There you have the right instructions. Download that binary from sqlite.org and place it somewhere in the PATH, could be Ruby own 'bin' directory. The problem is that bundle chews that message so users don't see what are the manual steps involved. HTH, -- Luis Lavena -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

