Sha256: e21cd5ccde2fcfeccb2093344d05f831831bcd4652703f68262360f319d3b801
Contents?: true
Size: 732 Bytes
Versions: 1
Compression:
Stored size: 732 Bytes
Contents
warn "Jdbc-MySQL is only for use with JRuby" if (JRUBY_VERSION.nil? rescue true) module Jdbc module MySQL DRIVER_VERSION = '5.1.24' VERSION = DRIVER_VERSION + '' def self.driver_jar "mysql-connector-java-#{DRIVER_VERSION}.jar" end def self.load_driver(method = :load) send method, driver_jar end def self.driver_name 'com.mysql.jdbc.Driver' end if defined?(JRUBY_VERSION) && # enable backwards-compat behavior : ( Java::JavaLang::Boolean.get_boolean("jdbc.driver.autoload") || Java::JavaLang::Boolean.get_boolean("jdbc.mysql.autoload") ) warn "autoloading JDBC driver on require 'jdbc/mysql'" if $VERBOSE load_driver :require end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jdbc-mysql-5.1.24 | lib/jdbc/mysql.rb |