Module: Sequel::JDBC
- Defined in:
- lib/sequel/adapters/jdbc.rb,
lib/sequel/adapters/jdbc/h2.rb,
lib/sequel/adapters/jdbc/db2.rb,
lib/sequel/adapters/jdbc/jtds.rb,
lib/sequel/adapters/jdbc/as400.rb,
lib/sequel/adapters/jdbc/derby.rb,
lib/sequel/adapters/jdbc/mssql.rb,
lib/sequel/adapters/jdbc/mysql.rb,
lib/sequel/adapters/jdbc/cubrid.rb,
lib/sequel/adapters/jdbc/fdbsql.rb,
lib/sequel/adapters/jdbc/hsqldb.rb,
lib/sequel/adapters/jdbc/oracle.rb,
lib/sequel/adapters/jdbc/sqlite.rb,
lib/sequel/adapters/jdbc/sqlserver.rb,
lib/sequel/adapters/jdbc/postgresql.rb,
lib/sequel/adapters/jdbc/firebirdsql.rb,
lib/sequel/adapters/jdbc/sqlanywhere.rb,
lib/sequel/adapters/jdbc/jdbcprogress.rb,
lib/sequel/adapters/jdbc/transactions.rb,
lib/sequel/adapters/jdbc/informix-sqli.rb
Overview
Houses Sequel’s JDBC support when running on JRuby.
Defined Under Namespace
Modules: AS400, Cubrid, DB2, Derby, Fdbsql, Firebird, H2, HSQLDB, Informix, JTDS, JavaLang, JavaSQL, JavaxNaming, MSSQL, MySQL, Oracle, Postgres, Progress, SQLServer, SQLite, SqlAnywhere, Transactions Classes: Database, Dataset, TypeConvertor
Constant Summary collapse
- JNDI_URI_REGEXP =
Used to identify a jndi connection and to extract the jndi resource name.
/\Ajdbc:jndi:(.+)/
- DECIMAL_TYPE_RE =
The types to check for 0 scale to transform :decimal types to :integer.
/number|numeric|decimal/io
- DATABASE_SETUP =
Contains procs keyed on subadapter type that extend the given database object so it supports the correct database type.
{}
Class Method Summary collapse
-
.load_driver(drv, gem = nil) ⇒ Object
Attempt to load the JDBC driver class, which should be specified as a string containing the driver class name (which JRuby should autoload).
-
.load_gem(name) ⇒ Object
Allow loading the necessary JDBC support via a gem.
Class Method Details
.load_driver(drv, gem = nil) ⇒ Object
Attempt to load the JDBC driver class, which should be specified as a string containing the driver class name (which JRuby should autoload). Note that the string is evaled, so this method is not safe to call with untrusted input. Raise a Sequel::AdapterNotFound if evaluating the class name raises a NameError.
53 54 55 56 57 58 |
# File 'lib/sequel/adapters/jdbc.rb', line 53 def self.load_driver(drv, gem=nil) load_gem(gem) if gem eval drv rescue NameError raise Sequel::AdapterNotFound, "#{drv} not loaded#{", try installing jdbc-#{gem.to_s.downcase} gem" if gem}" end |
.load_gem(name) ⇒ Object
Allow loading the necessary JDBC support via a gem.
35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/sequel/adapters/jdbc.rb', line 35 def self.load_gem(name) begin require "jdbc/#{name.to_s.downcase}" rescue LoadError # jdbc gem not used, hopefully the user has the .jar in their CLASSPATH else if defined?(::Jdbc) && ( ::Jdbc.const_defined?(name) rescue nil ) jdbc_module = ::Jdbc.const_get(name) # e.g. Jdbc::SQLite3 jdbc_module.load_driver if jdbc_module.respond_to?(:load_driver) end end end |