Problem
I am trying to build a small ruby script - which will be run using jruby once a day - to connect to a Sybase ASE 12.5.4 database and perform a complex query.
Ultimately I intend to do some processing on the data and insert the new data in a MySQL table for use within a rails application.
Environment
- jruby v1.3.1
- java v1.6.0_16
- on Ubuntu Hardy
JRuby Installed Gems
- activerecord-jdbc-adapter (0.9.1)
- activerecord-2.3.4
Jruby Lib Directory
- mysql-connector-java-5.1.6
- jtds-1.2.2
Code Snippet
require 'rubygems'
require 'jdbc_adapter'
require 'active_record'
require 'active_record/version'
ActiveRecord::Base.establish_connection(
:adapter => 'jdbc',
:driver => 'net.sourceforge.jtds.jdbc.Driver',
:url => '--db-url--',
:username => '--username--',
:password => '--password--'
)
sql_statement = ActiveRecord::Base.connection.execute(-- QUERY --)
Produces
/home/spasm/.gem/jruby/1.8/gems/activerecord-jdbc-adapter-0.9.1/lib/active_record/connection_adapters/jdbc_adapter.rb:330:in `initialize': The driver encountered an error: no connection available (RuntimeError)
from /home/spasm/.gem/jruby/1.8/gems/activerecord-jdbc-adapter-0.9.1/lib/active_record/connection_adapters/jdbc_adapter.rb:457:in `initialize'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-jdbc-adapter-0.9.1/lib/active_record/connection_adapters/jdbc_adapter.rb:53:in `jdbc_connection'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:223:in `new_connection'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:245:in `checkout_new_connection'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:188:in `checkout'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `loop'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:184:in `checkout'
from /usr/lib/jruby-1.3.1/lib/ruby/1.8/monitor.rb:191:in `mon_synchronize'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:183:in `checkout'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:98:in `connection'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_pool.rb:326:in `retrieve_connection'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_specification.rb:123:in `retrieve_connection'
from /home/spasm/.gem/jruby/1.8/gems/activerecord-2.3.4/lib/active_record/connection_adapters/abstract/connection_specification.rb:115:in `connection'
I am assuming this is because the jTDS driver has not loaded properly? would anyone be able to give me any assistance please?
Many thanks in advance.
