vote up 0 vote down star
1

I'm trying to connect to SQL Server on Ubuntu 9.04 using Ruby. I translated and followed all the steps outlined in getting OSX talking to SQL Server from here:

http://toolmantim.com/articles/getting_rails_talking_to_sqlserver_on_osx_via_odbc

Everything is working on the FreeTDS and unixODBC end. I can see and query the database using tsql.

When I try to access the database from Ruby using IRB I get the following error:

DBI::DatabaseError : INTERN (0) [RubyODBC] Cannot allocate SQLHENV

Has anyone run into this and what can I do to solve this?

flag

70% accept rate

3 Answers

vote up 0 vote down check

Go fig that I actually got this working after submitting my question. What I ended up doing was uninstall libdbd-odbc-ruby and libdbi-ruby and then reinstalling them by installing libdbi-ruby first and then installing libdbd-odbc-ruby. I guess when I installed them before, something must of messed up.

link|flag
vote up 2 vote down

I started getting this error when I upgraded to Ubuntu 9.10 (Karmic Koala). Your tip regarding installation order of the Ubuntu packages didn't work for me.

It seems the fix was to manually compile ruby-odbc.

wget http://www.ch-werner.de/rubyodbc/ruby-odbc-0.9997.tar.gz
tar xzvf ruby-odbc-0.9997.tar.gz
cd ruby-odbc-0.9997
ruby extconf.rb --with-dlopen
make
sudo make install
link|flag
Thank you, that finally solves the issues I've been having. Must be a Karmic-specific bug. – Adam Lassek Nov 4 at 20:15
This solved my problem also... GOD!! Thanks!! – mickey Nov 19 at 2:07
vote up 0 vote down

BTW, following the instructions to recompile Ruby-ODBC on Ubuntu 9.10 (Karmic) required installation of either the libiodbc2-dev or the unixodbc-dev package. When using libiodbc2-dev, I got segmentation faults when my Ruby program tried:

connection.select_all('select top 15 * from log_device_healths')

..but no problem when using unixodbc-dev instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.