Module: Sequel::JDBC::MySQL::DatabaseMethods

Includes:
MySQL::DatabaseMethods
Defined in:
lib/sequel_core/adapters/jdbc/mysql.rb

Overview

Database instance methods for MySQL databases accessed via JDBC.

Constant Summary

Constants included from MySQL::DatabaseMethods

MySQL::DatabaseMethods::AUTO_INCREMENT, MySQL::DatabaseMethods::NOT_NULL, MySQL::DatabaseMethods::NULL, MySQL::DatabaseMethods::PRIMARY_KEY, MySQL::DatabaseMethods::TYPES, MySQL::DatabaseMethods::UNIQUE, MySQL::DatabaseMethods::UNSIGNED

Instance Method Summary collapse

Methods included from MySQL::DatabaseMethods

#alter_table_sql, #auto_increment_sql, #column_references_sql, #index_definition_sql, #server_version, #tables, #use

Instance Method Details

#dataset(opts = nil) ⇒ Object

Return instance of Sequel::JDBC::MySQL::Dataset with the given opts.



13
14
15
# File 'lib/sequel_core/adapters/jdbc/mysql.rb', line 13

def dataset(opts=nil)
  Sequel::JDBC::MySQL::Dataset.new(self, opts)
end