From: Brian Candler Date: 2010-03-30T05:48:43+09:00 Subject: Re: Oracle Windows Connect Will Raffaele wrote: > irb(main):001:0> require oci8 > NameError: undefined local variable or method `oci8' for main:Object > from (irb):1 > from :0 require 'oci8' (you missed the quotes) otherwise it thinks you're trying to use a local variable or method called oci8, and it can't find one. Compare: foo = 'oci8' require foo -- Posted via http://www.ruby-forum.com/.