Uhoh!
I need to work with MySQL databases, and my job is to enter in maybe
7000 entries into various tables. Since I’m getting paid by the hour,
entering the data in by hand would be a great way to save for college
but I don’t want to do that. I am looking to enter in the data via
RUBY!!!
After doing some research for a nice MySQL module in ruby, I came
across a very nice one (Ruby Revival
database/index.htm). But to use it, I need DBI to be installed first.
However, whenever I type:
ruby setup.rb setup
I get an error:
checking for sqlite_open() in -lsqlite… no
*** extconf.rb failed ***
This, as you can see, cause me to fail at making the makefile.
What should I do to fix this? I am running Mac OS X and have MySQL
installed (although would really rather otherwise).
Help!
-------------------------------------------------------|
~ Ari
crap my sig won’t fit
What should I do to fix this? I am running Mac OS X and have MySQL
installed (although would really rather otherwise).
How do you have Ruby installed? If you installed Ruby yourself, you
might already have dbi as part of the installation. (That appears to
be the case on my machine.) Also, you might consider installing
sqlite via Macports, which might provide you with the necessary library.
What should I do to fix this? I am running Mac OS X and have MySQL
installed (although would really rather otherwise).
How do you have Ruby installed? If you installed Ruby yourself, you
might already have dbi as part of the installation. (That appears
to be the case on my machine.)
So, I think you’d want something along the lines of
ruby setup.rb config --with=dib, dbd_mysql or somesuch.
I did ruby setup.rb config --with=dbd_mysql, as well as with
dbd_sqlite. mysql worked perfectly, and sqlite did not. I assume this
is because I do not have the sqlite software installed, as I do with
mysql?
Reading README’s and Google is definitely your friend–second link
after googling “ruby-dbi mysql install”:
I read the README and searched on Google, but it seems that all this
time I was searching for the wrong stuff!
while true
puts ‘Thank You!’
end
---------------------------------------------------------------|
~Ari
“I don’t suffer from insanity. I enjoy every minute of it” --1337est
man alive
So, I think you’d want something along the lines of
ruby setup.rb config --with=dib, dbd_mysql or somesuch.
I did ruby setup.rb config --with=dbd_mysql, as well as with
dbd_sqlite. mysql worked perfectly, and sqlite did not. I assume this
is because I do not have the sqlite software installed, as I do with
mysql?
I assume this is because I do not have the sqlite software
installed, as I do with mysql?
That appears to be the case. The DBD modules often need to link to
libraries for their corresponding server. IIRC, the Perl Sqlite CPAN
module even installs Sqlite as part of its installation. It’s quite
small.
Michael G.
grzm seespotcode net
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.