I'm working on a project that involves some scripting and data storage. The database that I have available to me is MS Sql Server and it is on a windows platform.

Despite this I'm looking to leverage Ruby to write the script, specifically JRuby. There are a couple of reasons for this

  1. I would like to leverage Prawn to create pdfs
  2. I just like Ruby
  3. JRuby and Rawr will allow me to bundle the dependencies so that I don't have to worry about having ruby on the target machine(s).

When using Matz ruby I can use 'win32ole' for easy database connectivity. However this doesn't work in JRuby for obvious reasons. What is the bast way to connect to MS Sql from JRuby/Java to perform simple Select and Update statements?

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

MS SQL should have a JDBC driver; use that with the JRuby-JDBC bridge: http://wiki.jruby.org/wiki/JDBC

link|improve this answer
Glad to help. :) – Don Werve Apr 22 '09 at 19:49
feedback

Your Answer

 
or
required, but never shown

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