* You are viewing Posts Tagged ‘Ruby’

Installing/Updating SQLite3 on Windows

Installing SQLite3 DLL

To install SQLite3 in windows you require not only the gem but a DLL files in your system PATH (or in your windows/system32 folder).

To obtain the DLL, go to: http://www.sqlite.org/download.html

I always believe that DLLs belong in the windows/system32 folder but as long as you put yours somewhere where your PATH environment variable points to, you should be fine.

Installing/Updating the SQLite3 Gem

Normally to install the gem you’d call gem install sqlite3-ruby and it would do everything automatically but if you try it (as of today) it will give … Continue Reading