# File lib/dbd_db2/DB2.rb, line 197
    def initialize(handle, statement)
      super(nil)
      @handle = handle
      @statement = statement
      @arr = []
      @params = []
      @cols = nil
      @cols = get_col_info if @statement.nil?
    end