Class: Sequel::DB2::Database

Inherits:
Sequel::Database show all
Includes:
DB2CLI
Defined in:
lib/sequel/adapters/db2.rb

Constant Summary collapse

TEMPORARY =
'GLOBAL TEMPORARY '.freeze

Constants inherited from Sequel::Database

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

Instance Attribute Summary

Attributes inherited from Sequel::Database

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

Instance Method Summary collapse

Methods inherited from Sequel::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?, #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

check_error(rc, “Could not allocate DB2 environment”)



15
16
17
18
19
20
21
22
23
24
# File 'lib/sequel/adapters/db2.rb', line 15

def connect(server)
  opts = server_opts(server)
  rc, dbc = SQLAllocHandle(SQL_HANDLE_DBC, @@env) 
  check_error(rc, "Could not allocate database connection")
  
  rc = SQLConnect(dbc, opts[:database], opts[:user], opts[:password]) 
  check_error(rc, "Could not connect to database")
  
  dbc
end

#dataset(opts = nil) ⇒ Object



31
32
33
# File 'lib/sequel/adapters/db2.rb', line 31

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

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



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

def execute(sql, opts={})
  log_info(sql)
  synchronize(opts[:server]) do |conn|
    rc, sth = SQLAllocHandle(SQL_HANDLE_STMT, @handle) 
    check_error(rc, "Could not allocate statement")

    begin
      rc = SQLExecDirect(sth, sql) 
      check_error(rc, "Could not execute statement")
      
      yield(sth) if block_given?

      rc, rpc = SQLRowCount(sth)
      check_error(rc, "Could not get RPC") 
      rpc
    ensure
      rc = SQLFreeHandle(SQL_HANDLE_STMT, sth)
      check_error(rc, "Could not free statement")
    end
  end
end

#test_connection(server = nil) ⇒ Object



26
27
28
29
# File 'lib/sequel/adapters/db2.rb', line 26

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