From: Luis Lavena Date: 2009-11-28T23:45:13+09:00 Subject: Re: SQLite and Ruby DLL problem On Nov 28, 10:04 am, Omar Campos wrote: > Hello all, > >   I am trying to get Ruby to work with SQLite under Windows.  I > installed the Sqlite-ruby gem, but whenever I do this: > > require 'sqlite' > > I get an error saying that sqlite.dll was  not found.  I have downloaded > de SQLite DLL, and placed it in the Windows folder, the system32 folder > and inside > C:\ruby\lib\ruby\gems\1.8\gems\sqlite-ruby-2.2.3-x86-mswin32\lib. > Forgot to mention: When you require, please do this: require 'rubygems' require 'sqlite3' Since you're installing an old SQLite/Ruby bindings for SQLite 2, but installing the gem for SQLite 3. Follow the tutorial link I sent before and should get you started. -- Luis Lavena