greg halsey wrote:
> Here is what I tried:
> <snip>

A successful installation.

> C:\>irb
> irb(main):001:0> require 'sqlite3'
> => false
> irb(main):002:0>
> 
> It doesn't seem to want to load.

It loaded. The return value of require doesn't mean much. Try this:

irb(main):002:0> SQLite3
=> SQLite3

See, the class is there, you're good to go.

Cheers,
Dave