On May 11, 2:20 am, nilesh sondagar <[email protected]> wrote: > Hi, > Can Anyone suggest me the solution for following errors? > > /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in > `gem_original_require': no such file to load -- mysql (LoadError) > from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in > `require' > from me_billing_script_10-05.rb:4
It appears that you are trying to use the Sequel mysql adapter without actually having the mysql gem installed. That won't work, you need to install the mysql gem first: sudo gem install mysql Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en.
