Class: Sequel::Database

Inherits:
Object show all
Includes:
Schema::SQL
Defined in:
lib/sequel_core/database.rb,
lib/sequel_core/database/schema.rb

Overview

A Database object represents a virtual connection to a database. The Database class is meant to be subclassed by database adapters in order to provide the functionality needed for executing queries.

Constant Summary collapse

ADAPTERS =

Array of supported database adapters

%w'ado db2 dbi informix jdbc mysql odbc openbase oracle postgres sqlite'.collect{|x| x.to_sym}
SQL_BEGIN =
'BEGIN'.freeze
SQL_COMMIT =
'COMMIT'.freeze
SQL_ROLLBACK =
'ROLLBACK'.freeze
@@adapters =

Hash of adapters that have been used

Hash.new
@@single_threaded =

Whether to use the single threaded connection pool by default

false
@@quote_identifiers =

Whether to quote identifiers (columns and tables) by default

true
@@upcase_identifiers =

Whether to upcase identifiers (columns and tables) by default

nil

Constants included from Schema::SQL

Schema::SQL::AUTOINCREMENT, Schema::SQL::CASCADE, Schema::SQL::COMMA_SEPARATOR, Schema::SQL::NOT_NULL, Schema::SQL::NO_ACTION, Schema::SQL::NULL, Schema::SQL::PRIMARY_KEY, Schema::SQL::RESTRICT, Schema::SQL::SET_DEFAULT, Schema::SQL::SET_NULL, Schema::SQL::TYPES, Schema::SQL::UNDERSCORE, Schema::SQL::UNIQUE, Schema::SQL::UNSIGNED

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Schema::SQL

#alter_table_sql, #alter_table_sql_list, #auto_increment_sql, #column_definition_sql, #column_list_sql, #column_references_sql, #constraint_definition_sql, #create_table_sql_list, #default_index_name, #drop_index_sql, #drop_table_sql, #filter_expr, #index_definition_sql, #index_list_sql_list, #literal, #on_delete_clause, #quote_identifier, #quote_schema_table, #rename_table_sql, #schema, #schema_utility_dataset

Constructor Details

#initialize(opts = {}, &block) ⇒ Database

Constructs a new instance of a database connection with the specified options hash.

Sequel::Database is an abstract class that is not useful by itself.

Takes the following options:

  • :default_schema : The default schema to use, should generally be nil

  • :disconnection_proc: A proc used to disconnect the connection.

  • :loggers : An array of loggers to use.

  • :quote_identifiers : Whether to quote identifiers

  • :single_threaded : Whether to use a single-threaded connection pool

All options given are also passed to the ConnectionPool. If a block is given, it is used as the connection_proc for the ConnectionPool.



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/sequel_core/database.rb', line 70

def initialize(opts = {}, &block)
  @opts = opts
  
  @quote_identifiers = opts.include?(:quote_identifiers) ? opts[:quote_identifiers] : @@quote_identifiers
  @single_threaded = opts.include?(:single_threaded) ? opts[:single_threaded] : @@single_threaded
  @schemas = nil
  @default_schema = opts[:default_schema]
  @prepared_statements = {}
  @transactions = []
  @pool = (@single_threaded ? SingleThreadedPool : ConnectionPool).new(connection_pool_default_options.merge(opts), &block)
  @pool.connection_proc = proc{|server| connect(server)} unless block
  @pool.disconnection_proc = proc{|conn| disconnect_connection(conn)} unless opts[:disconnection_proc]

  @loggers = Array(opts[:logger]) + Array(opts[:loggers])
  ::Sequel::DATABASES.push(self)
end

Instance Attribute Details

#default_schemaObject

The default schema to use



36
37
38
# File 'lib/sequel_core/database.rb', line 36

def default_schema
  @default_schema
end

#loggersObject

Array of SQL loggers to use for this database



39
40
41
# File 'lib/sequel_core/database.rb', line 39

def loggers
  @loggers
end

#optsObject (readonly)

The options for this database



42
43
44
# File 'lib/sequel_core/database.rb', line 42

def opts
  @opts
end

#poolObject (readonly)

The connection pool for this database



45
46
47
# File 'lib/sequel_core/database.rb', line 45

def pool
  @pool
end

#prepared_statementsObject (readonly)

The prepared statement objects for this database, keyed by name



48
49
50
# File 'lib/sequel_core/database.rb', line 48

def prepared_statements
  @prepared_statements
end

#quote_identifiers=(value) ⇒ Object (writeonly)

Whether to quote identifiers (columns and tables) for this database



51
52
53
# File 'lib/sequel_core/database.rb', line 51

def quote_identifiers=(value)
  @quote_identifiers = value
end

#upcase_identifiers=(value) ⇒ Object (writeonly)

Whether to upcase identifiers (columns and tables) for this database



54
55
56
# File 'lib/sequel_core/database.rb', line 54

def upcase_identifiers=(value)
  @upcase_identifiers = value
end

Class Method Details

.adapter_class(scheme) ⇒ Object

The Database subclass for the given adapter scheme. Raises Sequel::Error::AdapterNotFound if the adapter could not be loaded.



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/sequel_core/database.rb', line 92

def self.adapter_class(scheme)
  scheme = scheme.to_s.gsub('-', '_').to_sym
  
  if (klass = @@adapters[scheme]).nil?
    # attempt to load the adapter file
    begin
      require "sequel_core/adapters/#{scheme}"
    rescue LoadError => e
      raise Error::AdapterNotFound, "Could not load #{scheme} adapter:\n  #{e.message}"
    end
    
    # make sure we actually loaded the adapter
    if (klass = @@adapters[scheme]).nil?
      raise Error::AdapterNotFound, "Could not load #{scheme} adapter"
    end
  end
  return klass
end

.adapter_schemeObject

Returns the scheme for the Database class.



112
113
114
# File 'lib/sequel_core/database.rb', line 112

def self.adapter_scheme
  @scheme
end

.connect(conn_string, opts = {}, &block) ⇒ Object

Connects to a database. See Sequel.connect.



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/sequel_core/database.rb', line 117

def self.connect(conn_string, opts = {}, &block)
  if conn_string.is_a?(String)
    if conn_string =~ /\Ajdbc:/
      c = adapter_class(:jdbc)
      opts = {:uri=>conn_string}.merge(opts)
    else
      uri = URI.parse(conn_string)
      scheme = uri.scheme
      scheme = :dbi if scheme =~ /\Adbi-/
      c = adapter_class(scheme)
      uri_options = {}
      uri.query.split('&').collect{|s| s.split('=')}.each{|k,v| uri_options[k.to_sym] = v} unless uri.query.blank?
      opts = c.send(:uri_to_options, uri).merge(uri_options).merge(opts)
    end
  else
    opts = conn_string.merge(opts)
    c = adapter_class(opts[:adapter] || opts['adapter'])
  end
  # process opts a bit
  opts = opts.inject({}) do |m, kv| k, v = *kv
    k = :user if k.to_s == 'username'
    m[k.to_sym] = v
    m
  end
  if block
    begin
      yield(db = c.new(opts))
    ensure
      db.disconnect if db
      ::Sequel::DATABASES.delete(db)
    end
    nil
  else
    c.new(opts)
  end
end

.quote_identifiers=(value) ⇒ Object

Sets the default quote_identifiers mode for new databases. See Sequel.quote_identifiers=.



156
157
158
# File 'lib/sequel_core/database.rb', line 156

def self.quote_identifiers=(value)
  @@quote_identifiers = value
end

.single_threaded=(value) ⇒ Object

Sets the default single_threaded mode for new databases. See Sequel.single_threaded=.



162
163
164
# File 'lib/sequel_core/database.rb', line 162

def self.single_threaded=(value)
  @@single_threaded = value
end

.upcase_identifiers=(value) ⇒ Object

Sets the default quote_identifiers mode for new databases. See Sequel.quote_identifiers=.



168
169
170
# File 'lib/sequel_core/database.rb', line 168

def self.upcase_identifiers=(value)
  @@upcase_identifiers = value
end

Instance Method Details

#<<(sql) ⇒ Object

Executes the supplied SQL statement. The SQL can be supplied as a string or as an array of strings. If an array is given, comments and excessive white space are removed. See also Array#to_sql.



208
209
210
# File 'lib/sequel_core/database.rb', line 208

def <<(sql)
  execute_ddl((Array === sql) ? sql.to_sql : sql)
end

#[](*args, &block) ⇒ Object

Returns a dataset from the database. If the first argument is a string, the method acts as an alias for Database#fetch, returning a dataset for arbitrary SQL:

DB['SELECT * FROM items WHERE name = ?', my_name].print

Otherwise, acts as an alias for Database#from, setting the primary table for the dataset:

DB[:items].sql #=> "SELECT * FROM items"


222
223
224
# File 'lib/sequel_core/database.rb', line 222

def [](*args, &block)
  (String === args.first) ? fetch(*args, &block) : from(*args, &block)
end

#add_column(table, *args) ⇒ Object

Adds a column to the specified table. This method expects a column name, a datatype and optionally a hash with additional constraints and options:

DB.add_column :items, :name, :text, :unique => true, :null => false
DB.add_column :items, :category, :text, :default => 'ruby'

See alter_table.



10
11
12
# File 'lib/sequel_core/database/schema.rb', line 10

def add_column(table, *args)
  alter_table(table) {add_column(*args)}
end

#add_index(table, *args) ⇒ Object

Adds an index to a table for the given columns:

DB.add_index :posts, :title
DB.add_index :posts, [:author, :title], :unique => true

See alter_table.



20
21
22
# File 'lib/sequel_core/database/schema.rb', line 20

def add_index(table, *args)
  alter_table(table) {add_index(*args)}
end

#alter_table(name, generator = nil, &block) ⇒ Object

Alters the given table with the specified block. Here are the currently available operations:

DB.alter_table :items do
  add_column :category, :text, :default => 'ruby'
  drop_column :category
  rename_column :cntr, :counter
  set_column_type :value, :float
  set_column_default :value, :float
  add_index [:group, :category]
  drop_index [:group, :category]
end

Note that #add_column accepts all the options available for column definitions using create_table, and #add_index accepts all the options available for index definition.

See Schema::AlterTableGenerator.



42
43
44
45
46
# File 'lib/sequel_core/database/schema.rb', line 42

def alter_table(name, generator=nil, &block)
  remove_cached_schema(name)
  generator ||= Schema::AlterTableGenerator.new(self, &block)
  alter_table_sql_list(name, generator.operations).flatten.each {|sql| execute_ddl(sql)}
end

#call(ps_name, hash = {}) ⇒ Object

Call the prepared statement with the given name with the given hash of arguments.



228
229
230
# File 'lib/sequel_core/database.rb', line 228

def call(ps_name, hash={})
  prepared_statements[ps_name].call(hash)
end

#connectObject

Connects to the database. This method should be overridden by descendants.

Raises:

  • (NotImplementedError)


233
234
235
# File 'lib/sequel_core/database.rb', line 233

def connect
  raise NotImplementedError, "#connect should be overridden by adapters"
end

#create_or_replace_view(name, source) ⇒ Object

Creates a view, replacing it if it already exists:

DB.create_or_replace_view(:cheap_items, "SELECT * FROM items WHERE price < 100")
DB.create_or_replace_view(:ruby_items, DB[:items].filter(:category => 'ruby'))


73
74
75
76
77
# File 'lib/sequel_core/database/schema.rb', line 73

def create_or_replace_view(name, source)
  remove_cached_schema(name)
  source = source.sql if source.is_a?(Dataset)
  execute_ddl("CREATE OR REPLACE VIEW #{quote_identifier(name)} AS #{source}")
end

#create_table(name, generator = nil, &block) ⇒ Object

Creates a table with the columns given in the provided block:

DB.create_table :posts do
  primary_key :id, :serial
  column :title, :text
  column :content, :text
  index :title
end

See Schema::Generator.



58
59
60
61
# File 'lib/sequel_core/database/schema.rb', line 58

def create_table(name, generator=nil, &block)
  generator ||= Schema::Generator.new(self, &block)
  create_table_sql_list(name, *generator.create_info).flatten.each {|sql| execute_ddl(sql)}
end

#create_table!(name, generator = nil, &block) ⇒ Object

Forcibly creates a table. If the table already exists it is dropped.



64
65
66
67
# File 'lib/sequel_core/database/schema.rb', line 64

def create_table!(name, generator=nil, &block)
  drop_table(name) rescue nil
  create_table(name, generator, &block)
end

#create_view(name, source) ⇒ Object

Creates a view based on a dataset or an SQL string:

DB.create_view(:cheap_items, "SELECT * FROM items WHERE price < 100")
DB.create_view(:ruby_items, DB[:items].filter(:category => 'ruby'))


83
84
85
86
# File 'lib/sequel_core/database/schema.rb', line 83

def create_view(name, source)
  source = source.sql if source.is_a?(Dataset)
  execute_ddl("CREATE VIEW #{quote_identifier(name)} AS #{source}")
end

#datasetObject

Returns a blank dataset



238
239
240
# File 'lib/sequel_core/database.rb', line 238

def dataset
  ds = Sequel::Dataset.new(self)
end

#disconnectObject

Disconnects all available connections from the connection pool. If any connections are currently in use, they will not be disconnected.



244
245
246
# File 'lib/sequel_core/database.rb', line 244

def disconnect
  pool.disconnect
end

#drop_column(table, *args) ⇒ Object

Removes a column from the specified table:

DB.drop_column :items, :category

See alter_table.



93
94
95
# File 'lib/sequel_core/database/schema.rb', line 93

def drop_column(table, *args)
  alter_table(table) {drop_column(*args)}
end

#drop_index(table, columns) ⇒ Object

Removes an index for the given table and column/s:

DB.drop_index :posts, :title
DB.drop_index :posts, [:author, :title]

See alter_table.



103
104
105
# File 'lib/sequel_core/database/schema.rb', line 103

def drop_index(table, columns)
  alter_table(table) {drop_index(columns)}
end

#drop_table(*names) ⇒ Object

Drops one or more tables corresponding to the given table names:

DB.drop_table(:posts, :comments)


110
111
112
113
114
115
# File 'lib/sequel_core/database/schema.rb', line 110

def drop_table(*names)
  names.each do |n|
    remove_cached_schema(n)
    execute_ddl(drop_table_sql(n))
  end
end

#drop_view(*names) ⇒ Object

Drops a view:

DB.drop_view(:cheap_items)


120
121
122
123
124
125
# File 'lib/sequel_core/database/schema.rb', line 120

def drop_view(*names)
  names.each do |n|
    remove_cached_schema(n)
    execute_ddl("DROP VIEW #{quote_identifier(n)}")
  end
end

#execute(sql, opts = {}) ⇒ Object

Executes the given SQL. This method should be overridden in descendants.

Raises:

  • (NotImplementedError)


249
250
251
# File 'lib/sequel_core/database.rb', line 249

def execute(sql, opts={})
  raise NotImplementedError, "#execute should be overridden by adapters"
end

#execute_ddl(sql, opts = {}, &block) ⇒ Object

Method that should be used when submitting any DDL (Data Definition Language) SQL. By default, calls execute_dui.



255
256
257
# File 'lib/sequel_core/database.rb', line 255

def execute_ddl(sql, opts={}, &block)
  execute_dui(sql, opts, &block)
end

#execute_dui(sql, opts = {}, &block) ⇒ Object

Method that should be used when issuing a DELETE, UPDATE, or INSERT statement. By default, calls execute.



261
262
263
# File 'lib/sequel_core/database.rb', line 261

def execute_dui(sql, opts={}, &block)
  execute(sql, opts, &block)
end

#fetch(sql, *args, &block) ⇒ Object Also known as: >>

Fetches records for an arbitrary SQL statement. If a block is given, it is used to iterate over the records:

DB.fetch('SELECT * FROM items'){|r| p r}

The method returns a dataset instance:

DB.fetch('SELECT * FROM items').print

Fetch can also perform parameterized queries for protection against SQL injection:

DB.fetch('SELECT * FROM items WHERE name = ?', my_name).print


278
279
280
281
282
283
# File 'lib/sequel_core/database.rb', line 278

def fetch(sql, *args, &block)
  ds = dataset
  ds.opts[:sql] = Sequel::SQL::PlaceholderLiteralString.new(sql, args)
  ds.each(&block) if block
  ds
end

#from(*args, &block) ⇒ Object

Returns a new dataset with the from method invoked. If a block is given, it is used as a filter on the dataset.



288
289
290
291
# File 'lib/sequel_core/database.rb', line 288

def from(*args, &block)
  ds = dataset.from(*args)
  block ? ds.filter(&block) : ds
end

#get(expr) ⇒ Object

Returns a single value from the database, e.g.:

# SELECT 1
DB.get(1) #=> 1 

# SELECT version()
DB.get(:version[]) #=> ...


300
301
302
# File 'lib/sequel_core/database.rb', line 300

def get(expr)
  dataset.get(expr)
end

#inspectObject

Returns a string representation of the database object including the class name and the connection URI (or the opts if the URI cannot be constructed).



307
308
309
# File 'lib/sequel_core/database.rb', line 307

def inspect
  "#<#{self.class}: #{(uri rescue opts).inspect}>" 
end

#log_info(message, args = nil) ⇒ Object

Log a message at level info to all loggers. All SQL logging goes through this method.



313
314
315
316
# File 'lib/sequel_core/database.rb', line 313

def log_info(message, args=nil)
  message = "#{message}; #{args.inspect}" if args
  @loggers.each{|logger| logger.info(message)}
end

#loggerObject

Return the first logger or nil if no loggers are being used. Should only be used for backwards compatibility.



320
321
322
# File 'lib/sequel_core/database.rb', line 320

def logger
  @loggers.first
end

#logger=(logger) ⇒ Object

Replace the array of loggers with the given logger(s).



325
326
327
# File 'lib/sequel_core/database.rb', line 325

def logger=(logger)
  @loggers = Array(logger)
end

#multi_threaded?Boolean

Returns true unless the database is using a single-threaded connection pool.

Returns:

  • (Boolean)


330
331
332
# File 'lib/sequel_core/database.rb', line 330

def multi_threaded?
  !@single_threaded
end

#query(&block) ⇒ Object

Returns a dataset modified by the given query block. See Dataset#query.



335
336
337
# File 'lib/sequel_core/database.rb', line 335

def query(&block)
  dataset.query(&block)
end

#quote_identifiers?Boolean

Returns true if the database quotes identifiers.

Returns:

  • (Boolean)


340
341
342
# File 'lib/sequel_core/database.rb', line 340

def quote_identifiers?
  @quote_identifiers
end

#rename_column(table, *args) ⇒ Object

Renames a column in the specified table. This method expects the current column name and the new column name:

DB.rename_column :items, :cntr, :counter

See alter_table.



142
143
144
# File 'lib/sequel_core/database/schema.rb', line 142

def rename_column(table, *args)
  alter_table(table) {rename_column(*args)}
end

#rename_table(*args) ⇒ Object

Renames a table:

DB.tables #=> [:items]
DB.rename_table :items, :old_items
DB.tables #=> [:old_items]


132
133
134
# File 'lib/sequel_core/database/schema.rb', line 132

def rename_table(*args)
  execute_ddl(rename_table_sql(*args))
end

#select(*args) ⇒ Object

Returns a new dataset with the select method invoked.



345
346
347
# File 'lib/sequel_core/database.rb', line 345

def select(*args)
  dataset.select(*args)
end

#serial_primary_key_optionsObject

Default serial primary key options.



350
351
352
# File 'lib/sequel_core/database.rb', line 350

def serial_primary_key_options
  {:primary_key => true, :type => :integer, :auto_increment => true}
end

#set_column_default(table, *args) ⇒ Object

Sets the default value for the given column in the given table:

DB.set_column_default :items, :category, 'perl!'

See alter_table.



151
152
153
# File 'lib/sequel_core/database/schema.rb', line 151

def set_column_default(table, *args)
  alter_table(table) {set_column_default(*args)}
end

#set_column_type(table, *args) ⇒ Object

Set the data type for the given column in the given table:

DB.set_column_type :items, :price, :float

See alter_table.



160
161
162
# File 'lib/sequel_core/database/schema.rb', line 160

def set_column_type(table, *args)
  alter_table(table) {set_column_type(*args)}
end

#single_threaded?Boolean

Returns true if the database is using a single-threaded connection pool.

Returns:

  • (Boolean)


355
356
357
# File 'lib/sequel_core/database.rb', line 355

def single_threaded?
  @single_threaded
end

#synchronize(server = nil, &block) ⇒ Object

Acquires a database connection, yielding it to the passed block.



360
361
362
# File 'lib/sequel_core/database.rb', line 360

def synchronize(server=nil, &block)
  @pool.hold(server || :default, &block)
end

#table_exists?(name) ⇒ Boolean

Returns true if a table with the given name exists. This requires a query to the database unless this database object already has the schema for the given table name.

Returns:

  • (Boolean)


367
368
369
370
371
372
373
374
375
376
377
378
# File 'lib/sequel_core/database.rb', line 367

def table_exists?(name)
  if @schemas && @schemas[name]
    true
  else
    begin 
      from(name).first
      true
    rescue
      false
    end
  end
end

#test_connection(server = nil) ⇒ Object

Attempts to acquire a database connection. Returns true if successful. Will probably raise an error if unsuccessful.



382
383
384
385
# File 'lib/sequel_core/database.rb', line 382

def test_connection(server=nil)
  synchronize(server){|conn|}
  true
end

#transaction(server = nil) ⇒ Object

A simple implementation of SQL transactions. Nested transactions are not supported - calling #transaction within a transaction will reuse the current transaction. Should be overridden for databases that support nested transactions.



391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# File 'lib/sequel_core/database.rb', line 391

def transaction(server=nil)
  synchronize(server) do |conn|
    return yield(conn) if @transactions.include?(Thread.current)
    log_info(begin_transaction_sql)
    conn.execute(begin_transaction_sql)
    begin
      @transactions << Thread.current
      yield(conn)
    rescue Exception => e
      log_info(rollback_transaction_sql)
      conn.execute(rollback_transaction_sql)
      transaction_error(e)
    ensure
      unless e
        log_info(commit_transaction_sql)
        conn.execute(commit_transaction_sql)
      end
      @transactions.delete(Thread.current)
    end
  end
end

#typecast_value(column_type, value) ⇒ Object

Typecast the value to the given column_type. Can be overridden in adapters to support database specific column types. This method should raise Sequel::Error::InvalidValue if assigned value is invalid.



417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
# File 'lib/sequel_core/database.rb', line 417

def typecast_value(column_type, value)
  return nil if value.nil?
  case column_type
  when :integer
    begin
      Integer(value)
    rescue ArgumentError => e
      raise Sequel::Error::InvalidValue, e.message.inspect
    end
  when :string
    value.to_s
  when :float
    begin
      Float(value)
    rescue ArgumentError => e
      raise Sequel::Error::InvalidValue, e.message.inspect
    end
  when :decimal
    case value
    when BigDecimal
      value
    when String, Float
      value.to_d
    when Integer
      value.to_s.to_d
    else
      raise Sequel::Error::InvalidValue, "invalid value for BigDecimal: #{value.inspect}"
    end
  when :boolean
    case value
    when false, 0, "0", /\Af(alse)?\z/i
      false
    else
      value.blank? ? nil : true
    end
  when :date
    case value
    when Date
      value
    when DateTime, Time
      Date.new(value.year, value.month, value.day)
    when String
      value.to_date
    else
      raise Sequel::Error::InvalidValue, "invalid value for Date: #{value.inspect}"
    end
  when :time
    case value
    when Time
      value
    when String
      value.to_time
    else
      raise Sequel::Error::InvalidValue, "invalid value for Time: #{value.inspect}"
    end
  when :datetime
    raise(Sequel::Error::InvalidValue, "invalid value for Datetime: #{value.inspect}") unless value.is_one_of?(DateTime, Date, Time, String)
    if Sequel.datetime_class === value
      # Already the correct class, no need to convert
      value
    else
      # First convert it to standard ISO 8601 time, then
      # parse that string using the time class.
      (Time === value ? value.iso8601 : value.to_s).to_sequel_time
    end
  when :blob
    value.to_blob
  else
    value
  end
end

#upcase_identifiers?Boolean

Returns true if the database upcases identifiers.

Returns:

  • (Boolean)


490
491
492
493
# File 'lib/sequel_core/database.rb', line 490

def upcase_identifiers?
  return @upcase_identifiers unless @upcase_identifiers.nil?
  @upcase_identifiers = @opts.include?(:upcase_identifiers) ? @opts[:upcase_identifiers] : (@@upcase_identifiers.nil? ? upcase_identifiers_default : @@upcase_identifiers)
end

#uriObject Also known as: url

Returns the URI identifying the database. This method can raise an error if the database used options instead of a connection string.



498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
# File 'lib/sequel_core/database.rb', line 498

def uri
  uri = URI::Generic.new(
    self.class.adapter_scheme.to_s,
    nil,
    @opts[:host],
    @opts[:port],
    nil,
    "/#{@opts[:database]}",
    nil,
    nil,
    nil
  )
  uri.user = @opts[:user]
  uri.password = @opts[:password] if uri.user
  uri.to_s
end