vote up 0 vote down star
1

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.

flag

1 Answer

vote up 1 vote down

not entirely relevant, but this is what is required when using jruby, sybase jdbc and dbi:

require 'java' require './jars/jTDS3.jar' require './jars/jconn3.jar' require "rubygems" require "dbi"

dbh = DBI.connect('dbi:Jdbc:sybase:Tds:foobar:2460/testdb', 'sa', 'password', {'driver' => 'com.sybase.jdbc3.jdbc.SybDriver'} )

link|flag
I tried this and I can connect to my Database - thanks lollipopman For anyone reading this you need to download the drivers from the Sybase website: sybase.com/products/allproductsa-z/… Register and download the archive - you need jTDS3.jar and jconn3.jar which can be found in the archive in the classes folder. I still would prefer to use ActiveRecord and will pursue how to get this resolved. @lollipopman why DBI drivers? Does this give you better performance? – Spasm Oct 5 at 1:20
Glad to here you got it working, I am not using ruby on rails so DBI is sufficient for my scripting needs. – lollipopman Oct 5 at 12:57
@lollipopman: Although i use rails, this is for a cron process which will run once a day and populate a table which will be used by the rails app. I just wanted to use active record within the ruby script As I said I have something working now sow will continue with this path for now – Spasm Oct 7 at 4:29
@lollipopman: have you had any issues getting column names using DBI drivers? – Spasm Oct 7 at 6:06
I posted this issue here: stackoverflow.com/questions/1530329/… – Spasm Oct 7 at 8:51

Your Answer

Get an OpenID
or

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