aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/db2_adapter.rb
blob: 232971e4ecfd43f40c70fb9c92eb5ffb29e7c5e2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                                           











                                                                
                                      















                                                                                   
                                                                                                   






                                                                                       







                                       
                                                                                  





                                    
 

                                                  



                                          
 



















                                         


                                          
 



                          

                                                    

           
                                           


















                                                                       

           







                                                          


                                                
 






                                                             
 



                   















                                                                               







                        
               









                                                                             

                                                  
                                                                           

             


                                        
             


                   



                
                              
   
# Author/Maintainer: Maik Schmidt <contact@maik-schmidt.de>

require 'active_record/connection_adapters/abstract_adapter'

begin
  require 'db2/db2cli' unless self.class.const_defined?(:DB2CLI)
  require 'active_record/vendor/db2'

  module ActiveRecord
    class Base
      # Establishes a connection to the database that's used by
      # all Active Record objects
      def self.db2_connection(config) # :nodoc:
        config = config.symbolize_keys
        usr = config[:username]
        pwd = config[:password]

        if config.has_key?(:database)
          database = config[:database]
        else
          raise ArgumentError, "No database specified. Missing argument: database."
        end

        connection = DB2::Connection.new(DB2::Environment.new)
        connection.connect(database, usr, pwd)
        ConnectionAdapters::DB2Adapter.new(connection)
      end
    end

    module ConnectionAdapters
      # The DB2 adapter works with the C-based CLI driver (http://rubyforge.org/projects/ruby-dbi/)
      #
      # Options:
      #
      # * <tt>:username</tt> -- Defaults to nothing
      # * <tt>:password</tt> -- Defaults to nothing
      # * <tt>:database</tt> -- The name of the database. No default, must be provided.
      class DB2Adapter < AbstractAdapter
        def select_all(sql, name = nil)
          select(sql, name)
        end

        def select_one(sql, name = nil)
          select(sql, name).first
        end

        def insert(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil)
          execute(sql, name = nil)
          id_value || last_insert_id
        end

        def execute(sql, name = nil)
          rows_affected = 0

          log(sql, name) do
            stmt = DB2::Statement.new(@connection)
            stmt.exec_direct(sql)
            rows_affected = stmt.row_count
            stmt.free
          end

          rows_affected
        end

        alias_method :update, :execute
        alias_method :delete, :execute

        def begin_db_transaction
          @connection.set_auto_commit_off
        end

        def commit_db_transaction
          @connection.commit
          @connection.set_auto_commit_on
        end
        
        def rollback_db_transaction
          @connection.rollback
          @connection.set_auto_commit_on
        end

        def quote_column_name(column_name)
          column_name
        end

        def adapter_name()
          'DB2'
        end

        def quote_string(string)
          string.gsub(/'/, "''") # ' (for ruby-mode)
        end

        def add_limit_offset!(sql, options)
          if options[:limit] and !options[:limit].nil?
            # "FETCH FIRST 0 ROWS ONLY" is not allowed, so we have
            # to use a cheap trick.
            if options[:limit] == 0
              if sql =~ /WHERE/i
                sql.sub!(/WHERE/i, 'WHERE 1 = 2 AND ')
              elsif
                sql =~ /ORDER\s+BY/i
                sql.sub!(/ORDER\s+BY/i, 'WHERE 1 = 2 ORDER BY')
              else
                sql << 'WHERE 1 = 2'
              end
            else
              sql << " FETCH FIRST #{options[:limit]} ROWS ONLY" 
            end
          end
          if options[:offset] and !options[:offset].nil?
            raise ArgumentError, ':offset option is not yet supported!'
          end
        end

        def tables(name = nil)
          stmt = DB2::Statement.new(@connection)
          result = []
          stmt.tables.each { |t| result << t[2].downcase }
          stmt.free
          result
        end

        def columns(table_name, name = nil)
          stmt = DB2::Statement.new(@connection)
          result = []

          stmt.columns(table_name.upcase).each do |c| 
            c_name = c[3].downcase
            c_default = c[12] == 'NULL' ? nil : c[12]
            c_type = c[5].downcase
            c_type += "(#{c[6]})" if !c[6].nil? && c[6] != ''
            result << Column.new(c_name, c_default, c_type)
          end 

          stmt.free
          result
        end

        def native_database_types
          {
            :primary_key => "int generated by default as identity primary key",
            :string      => { :name => "varchar", :limit => 255 },
            :text        => { :name => "clob", :limit => 32768 },
            :integer     => { :name => "int" },
            :float       => { :name => "float" },
            :datetime    => { :name => "timestamp" },
            :timestamp   => { :name => "timestamp" },
            :time        => { :name => "time" },
            :date        => { :name => "date" },
            :binary      => { :name => "blob", :limit => 32768 },
            :boolean     => { :name => "decimal", :limit => 1 }
          }
        end

        def quoted_true
          '1'
        end

        def quoted_false
          '0'
        end

        private

        def last_insert_id
          row = select_one(<<-GETID.strip)
          with temp(id) as (values (identity_val_local())) select * from temp
          GETID
          row['id'].to_i
        end

        def select(sql, name = nil)
          stmt = nil
          log(sql, name) do
            stmt = DB2::Statement.new(@connection)
            stmt.exec_direct("#{sql.gsub(/=\s*null/i, 'IS NULL')} with ur")
          end

          rows = []
          while row = stmt.fetch_as_hash
            rows << row
          end
          stmt.free
          rows
        end
      end
    end
  end
rescue LoadError
  # DB2 driver is unavailable.
end