rtfminc
rtfminc

Reputation: 6363

Access existing MySql database with ruby (paths?)

I have an existing mysql db used by a rails app. I want to create a Ruby script to run to perform a weekly maintenance task on the database. My first line is:
require 'mysql'
I have tried various 'paths' to point there but get an error message like:

1:in `require': no such file to load

I have:

code at: \ruby\sites\somepgm
mysql at: \ruby\lib\gems\1.8\gems\mysql-2.8.1-x86-mswin32

How do i get them to be nice to each other?

Upvotes: 0

Views: 132

Answers (1)

Jed Schneider
Jed Schneider

Reputation: 14671

require 'rubygems'
require 'mysql'

Upvotes: 1

Related Questions