On Tue, Aug 7, 2012 at 11:18 PM, MjHerz <[email protected]> wrote: > "uninitialized constant TinyTds (NameError)" > require "rubygems"; > client = TinyTds::Client.new(:username => 'username', :password => 'password', :host => 'hostname')
My guess is that you did nto require tiny_tds. Try this: require "rubygems" require "tiny_tds" client = TinyTds::Client.new(:username => 'username', :password => 'password', :host => 'hostname') Željko -- filipin.eu -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. [email protected] http://groups.google.com/group/watir-general [email protected]
