Class: Sequel::Oracle::Database

Inherits:
Database show all
Includes:
DatabaseMethods
Defined in:
lib/sequel/adapters/oracle.rb

Constant Summary collapse

CONNECTION_ERROR_CODES =

ORA-00028: your session has been killed ORA-01012: not logged on ORA-03113: end-of-file on communication channel ORA-03114: not connected to ORACLE

[ 28, 1012, 3113, 3114 ]

Constants included from DatabaseMethods

Sequel::Oracle::DatabaseMethods::AUTOINCREMENT, Sequel::Oracle::DatabaseMethods::TEMPORARY

Constants inherited from Database

Database::ADAPTERS, Database::AUTOINCREMENT, Database::CASCADE, Database::COMMA_SEPARATOR, Database::MYSQL_TIMESTAMP_RE, Database::NOT_NULL, Database::NO_ACTION, Database::NULL, Database::POSTGRES_DEFAULT_RE, Database::PRIMARY_KEY, Database::RESTRICT, Database::SET_DEFAULT, Database::SET_NULL, Database::SQL_BEGIN, Database::SQL_COMMIT, Database::SQL_RELEASE_SAVEPOINT, Database::SQL_ROLLBACK, Database::SQL_ROLLBACK_TO_SAVEPOINT, Database::SQL_SAVEPOINT, Database::STRING_DEFAULT_RE, Database::TEMPORARY, Database::TRANSACTION_BEGIN, Database::TRANSACTION_COMMIT, Database::TRANSACTION_ROLLBACK, Database::UNDERSCORE, Database::UNIQUE, Database::UNSIGNED

Instance Attribute Summary

Attributes inherited from Database

#default_schema, #loggers, #opts, #pool, #prepared_statements

Instance Method Summary collapse

Methods included from DatabaseMethods

#create_sequence, #create_trigger, #database_type, #drop_sequence, #table_exists?, #tables

Methods inherited from Database

#<<, #[], adapter_class, adapter_scheme, #add_column, #add_index, #alter_table, #call, #cast_type_literal, connect, #create_or_replace_view, #create_table, #create_table!, #create_table?, #create_view, #database_type, #disconnect, #drop_column, #drop_index, #drop_table, #drop_view, #dump_indexes_migration, #dump_schema_migration, #dump_table_schema, #execute_ddl, #execute_dui, #execute_insert, #fetch, #from, #get, #identifier_input_method, identifier_input_method, #identifier_input_method=, identifier_input_method=, identifier_output_method, #identifier_output_method, identifier_output_method=, #identifier_output_method=, #initialize, #inspect, #literal, #log_info, #logger=, #query, #quote_identifiers=, quote_identifiers=, #quote_identifiers?, #rename_column, #rename_table, #schema, #select, #serial_primary_key_options, #set_column_default, #set_column_type, single_threaded=, #single_threaded?, #supports_savepoints?, #synchronize, #table_exists?, #test_connection, #transaction, #typecast_value, #uri, #url

Methods included from Metaprogramming

#meta_def

Constructor Details

This class inherits a constructor from Sequel::Database

Instance Method Details

#connect(server) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/sequel/adapters/oracle.rb', line 16

def connect(server)
  opts = server_opts(server)
  if opts[:database]
    dbname = opts[:host] ? \
      "//#{opts[:host]}#{":#{opts[:port]}" if opts[:port]}/#{opts[:database]}" : opts[:database]
  else
    dbname = opts[:host]
  end
  conn = OCI8.new(opts[:user], opts[:password], dbname, opts[:privilege])
  conn.autocommit = true
  conn.non_blocking = true
  conn
end

#dataset(opts = nil) ⇒ Object



30
31
32
# File 'lib/sequel/adapters/oracle.rb', line 30

def dataset(opts = nil)
  Oracle::Dataset.new(self, opts)
end

#execute(sql, opts = {}) ⇒ Object Also known as: do



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/sequel/adapters/oracle.rb', line 62

def execute(sql, opts={})
  log_info(sql)
  synchronize(opts[:server]) do |conn|
    begin
      r = conn.exec(sql)
      yield(r) if block_given?
      r
    rescue OCIException => e
      if CONNECTION_ERROR_CODES.include?(e.code)  
        raise(Sequel::DatabaseDisconnectError)              
      else
        raise
      end
    end
  end
end

#schema_parse_table(table, opts = {}) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/sequel/adapters/oracle.rb', line 34

def schema_parse_table(table, opts={})
  ds = dataset
  ds.identifier_output_method = :downcase
  schema, table = schema_and_table(table)
  table_schema = []
   = transaction(opts){|conn| conn.describe_table(table.to_s)}
  .columns.each do |column|
    table_schema << [
      column.name.downcase.to_sym,
      {
        :type => column.data_type,
        :db_type => column.type_string.split(' ')[0],
        :type_string => column.type_string,
        :charset_form => column.charset_form,
        :char_used => column.char_used?,
        :char_size => column.char_size,
        :data_size => column.data_size,
        :precision => column.precision,
        :scale => column.scale,
        :fsprecision => column.fsprecision,
        :lfprecision => column.lfprecision,
        :allow_null => column.nullable?
      }
    ]
  end
  table_schema
end