Hello, I've just pushed out a new release of ActiveRecord-JDBC. Get it through the usual gem install channels:
gem install activerecord-jdbc This release should be compatible with both JRuby 1.0 and the newly released 1.0.1. Summary: - Release coincides with JRuby 1.0.1 release - It is no longer necessary to specify :driver and :url configuration parameters for the mysql, postgresql, oracle, derby, hsqldb, and h2 adapters. The previous configuration is still valid and compatible, but for new applications, this makes it possible to use the exact same database.yml configuration as Rails applications running under native Ruby. - JDBC drivers can now be dynamically loaded by Ruby code, without being on the classpath prior to launching JRuby. Simply use "require 'jdbc-driver.jar'" in JRuby code to add it to the runtime classpath. - Updates to HSQL, MS SQLServer, Postgres, Oracle and Derby adapters * <http://jruby-extras.rubyforge.org/ActiveRecord-JDBC> Please try it and send your feedback! /Nick
