Dave Burt wrote: >> C:\>irb >> irb(main):001:0> require 'sqlite3' >> => false >> irb(main):002:0> > 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 Looking at the post I noticed the code should have the first two letters uppercase. irb(main):001:0> require 'SQlite3' => true Time to try it out. Thanks -- Posted via http://www.ruby-forum.com/.