Module: ArJdbc::Derby

Includes:
MissingFunctionalityHelper
Defined in:
lib/arjdbc/derby/adapter.rb

Defined Under Namespace

Modules: Column

Constant Summary collapse

AUTO_INC_STMT2 =
"SELECT AUTOINCREMENTSTART, AUTOINCREMENTINC, COLUMNNAME, REFERENCEID, COLUMNDEFAULT FROM SYS.SYSCOLUMNS WHERE REFERENCEID = (SELECT T.TABLEID FROM SYS.SYSTABLES T WHERE T.TABLENAME = '%s') AND COLUMNNAME = '%s'"
SIZEABLE =
%w(VARCHAR CLOB BLOB)

Class Method Summary collapse

Instance Method Summary collapse

Methods included from MissingFunctionalityHelper

#alter_table, #copy_table, #copy_table_contents, #copy_table_indexes, #move_table

Class Method Details

.arel2_visitors(config) ⇒ Object



67
68
69
70
# File 'lib/arjdbc/derby/adapter.rb', line 67

def self.arel2_visitors(config)
  require 'arel/visitors/derby'
  {}.tap {|v| %w(derby jdbcderby).each {|a| v[a] = ::Arel::Visitors::Derby } }
end

.column_selectorObject



5
6
7
# File 'lib/arjdbc/derby/adapter.rb', line 5

def self.column_selector
  [/derby/i, lambda {|cfg,col| col.extend(::ArJdbc::Derby::Column)}]
end

.extended(adapter) ⇒ Object



30
31
32
33
# File 'lib/arjdbc/derby/adapter.rb', line 30

def self.extended(adapter)
  monkey_rails
  adapter.configure_connection
end

.included(*args) ⇒ Object



35
36
37
# File 'lib/arjdbc/derby/adapter.rb', line 35

def self.included(*args)
  monkey_rails
end

.monkey_railsObject



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/arjdbc/derby/adapter.rb', line 9

def self.monkey_rails
  unless defined?(@already_monkeyd)
    # Needed because Rails is broken wrt to quoting of
    # some values. Most databases are nice about it,
    # but not Derby. The real issue is that you can't
    # compare a CHAR value to a NUMBER column.
    ::ActiveRecord::Associations::ClassMethods.module_eval do
      private

      def select_limited_ids_list(options, join_dependency)
        connection.select_all(
                              construct_finder_sql_for_association_limiting(options, join_dependency),
                              "#{name} Load IDs For Limited Eager Loading"
                              ).collect { |row| connection.quote(row[primary_key], columns_hash[primary_key]) }.join(", ")
      end
    end

    @already_monkeyd = true
  end
end

Instance Method Details

#adapter_nameObject

:nodoc:



63
64
65
# File 'lib/arjdbc/derby/adapter.rb', line 63

def adapter_name #:nodoc:
  'Derby'
end

#add_column(table_name, column_name, type, options = {}) ⇒ Object



174
175
176
177
178
# File 'lib/arjdbc/derby/adapter.rb', line 174

def add_column(table_name, column_name, type, options = {})
  add_column_sql = "ALTER TABLE #{quote_table_name(table_name)} ADD #{quote_column_name(column_name)} #{type_to_sql(type, options[:limit], options[:precision], options[:scale])}"
  add_column_options!(add_column_sql, options)
  execute(add_column_sql)
end

#add_column_options!(sql, options) ⇒ Object

Override default – fix case where ActiveRecord passes :default => nil, :null => true



103
104
105
106
107
# File 'lib/arjdbc/derby/adapter.rb', line 103

def add_column_options!(sql, options)
  options.delete(:default) if options.has_key?(:default) && options[:default].nil?
  sql << " DEFAULT #{quote(options.delete(:default))}" if options.has_key?(:default)
  super
end

#add_limit_offset!(sql, options) ⇒ Object

:nodoc:



336
337
338
339
340
341
342
343
344
# File 'lib/arjdbc/derby/adapter.rb', line 336

def add_limit_offset!(sql, options) #:nodoc:
  if options[:offset]
    sql << " OFFSET #{options[:offset]} ROWS"
  end
  if options[:limit]
    #ROWS/ROW and FIRST/NEXT mean the same
    sql << " FETCH FIRST #{options[:limit]} ROWS ONLY"
  end
end

#add_quotes(name) ⇒ Object



138
139
140
141
# File 'lib/arjdbc/derby/adapter.rb', line 138

def add_quotes(name)
  return name unless name
  %Q{"#{name}"}
end

#auto_increment_stmt(tname, cname) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/arjdbc/derby/adapter.rb', line 154

def auto_increment_stmt(tname, cname)
  stmt = AUTO_INC_STMT2 % [tname, strip_quotes(cname)]
  data = execute(stmt).first
  if data
    start = data['autoincrementstart']
    if start
      coldef = ""
      coldef << " GENERATED " << (data['columndefault'].nil? ? "ALWAYS" : "BY DEFAULT ")
      coldef << "AS IDENTITY (START WITH "
      coldef << start
      coldef << ", INCREMENT BY "
      coldef << data['autoincrementinc']
      coldef << ")"
      return coldef
    end
  end
  ""
end

#change_column(table_name, column_name, type, options = {}) ⇒ Object

Notes about changing in Derby:

http://db.apache.org/derby/docs/10.2/ref/rrefsqlj81859.html#rrefsqlj81859__rrefsqlj37860)

We support changing columns using the strategy outlined in:

https://issues.apache.org/jira/browse/DERBY-1515

This feature has not made it into a formal release and is not in Java 6. We will need to conditionally support this somehow (supposed to arrive for 10.3.0.0)



271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'lib/arjdbc/derby/adapter.rb', line 271

def change_column(table_name, column_name, type, options = {})
  # null/not nulling is easy, handle that separately
  if options.include?(:null)
    # This seems to only work with 10.2 of Derby
    if options.delete(:null) == false
      execute "ALTER TABLE #{quote_table_name(table_name)} ALTER COLUMN #{quote_column_name(column_name)} NOT NULL"
    else
      execute "ALTER TABLE #{quote_table_name(table_name)} ALTER COLUMN #{quote_column_name(column_name)} NULL"
    end
  end

  # anything left to do?
  unless options.empty?
    begin
      execute "ALTER TABLE #{quote_table_name(table_name)} ALTER COLUMN #{quote_column_name(column_name)} SET DATA TYPE #{type_to_sql(type, options[:limit])}"
    rescue
      transaction do
        temp_new_column_name = "#{column_name}_newtype"
        # 1) ALTER TABLE t ADD COLUMN c1_newtype NEWTYPE;
        add_column table_name, temp_new_column_name, type, options
        # 2) UPDATE t SET c1_newtype = c1;
        execute "UPDATE #{quote_table_name(table_name)} SET #{quote_column_name(temp_new_column_name)} = CAST(#{quote_column_name(column_name)} AS #{type_to_sql(type, options[:limit])})"
        # 3) ALTER TABLE t DROP COLUMN c1;
        remove_column table_name, column_name
        # 4) ALTER TABLE t RENAME COLUMN c1_newtype to c1;
        rename_column table_name, temp_new_column_name, column_name
      end
    end
  end
end

#classes_for_table_name(table) ⇒ Object



109
110
111
# File 'lib/arjdbc/derby/adapter.rb', line 109

def classes_for_table_name(table)
  ActiveRecord::Base.send(:subclasses).select {|klass| klass.table_name == table}
end

#columns(table_name, name = nil) ⇒ Object



310
311
312
# File 'lib/arjdbc/derby/adapter.rb', line 310

def columns(table_name, name=nil)
  @connection.columns_internal(table_name.to_s, name, derby_schema)
end

#configure_connectionObject



39
40
41
# File 'lib/arjdbc/derby/adapter.rb', line 39

def configure_connection
  execute("SET ISOLATION = SERIALIZABLE")   # This must be done or SELECT...FOR UPDATE won't work how we expect
end

#distinct(columns, order_by) ⇒ Object

SELECT DISTINCT clause for a given set of columns and a given ORDER BY clause.

Derby requires the ORDER BY columns in the select list for distinct queries, and requires that the ORDER BY include the distinct column.

distinct("posts.id", "posts.created_at desc")

Based on distinct method for PostgreSQL Adapter



201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/arjdbc/derby/adapter.rb', line 201

def distinct(columns, order_by)
  return "DISTINCT #{columns}" if order_by.blank?

  # construct a clean list of column names from the ORDER BY clause, removing
  # any asc/desc modifiers
  order_columns = [order_by].flatten.map{|o| o.split(',').collect { |s| s.split.first } }.flatten.reject(&:blank?)
  order_columns = order_columns.zip((0...order_columns.size).to_a).map { |s,i| "#{s} AS alias_#{i}" }

  # return a DISTINCT clause that's distinct on the columns we want but includes
  # all the required columns for the ORDER BY to work properly
  sql = "DISTINCT #{columns}, #{order_columns * ', '}"
  sql
end

#execute(sql, name = nil, binds = []) ⇒ Object



180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/arjdbc/derby/adapter.rb', line 180

def execute(sql, name = nil, binds = [])
  sql = extract_sql(sql)
  if sql =~ /\A\s*(UPDATE|INSERT)/i
    i = sql =~ /\swhere\s/im
    if i
      sql[i..-1] = sql[i..-1].gsub(/!=\s*NULL/, 'IS NOT NULL').gsub(/=\sNULL/i, 'IS NULL')
    end
  else
    sql.gsub!(/= NULL/i, 'IS NULL')
  end
  super
end

#expand_double_quotes(name) ⇒ Object



149
150
151
152
# File 'lib/arjdbc/derby/adapter.rb', line 149

def expand_double_quotes(name)
  return name unless name && name['"']
  name.gsub(/"/,'""')
end

#index_name_lengthObject



74
75
76
# File 'lib/arjdbc/derby/adapter.rb', line 74

def index_name_length
  128
end

#modify_types(tp) ⇒ Object



91
92
93
94
95
96
97
98
99
100
# File 'lib/arjdbc/derby/adapter.rb', line 91

def modify_types(tp)
  tp[:primary_key] = "int generated by default as identity NOT NULL PRIMARY KEY"
  tp[:string][:limit] = 256
  tp[:integer][:limit] = nil
  tp[:boolean] = {:name => "smallint"}
  tp[:datetime] = {:name => "timestamp", :limit => nil}
  tp[:timestamp][:limit] = nil
  tp[:date][:limit] = nil
  tp
end

#primary_keys(table_name) ⇒ Object



306
307
308
# File 'lib/arjdbc/derby/adapter.rb', line 306

def primary_keys(table_name)
  @connection.primary_keys table_name.to_s.upcase
end

#quote_column_name(name) ⇒ Object

:nodoc:



324
325
326
# File 'lib/arjdbc/derby/adapter.rb', line 324

def quote_column_name(name) #:nodoc:
  %Q{"#{name.to_s.upcase.gsub(/\"/, '""')}"}
end

#quoted_falseObject



332
333
334
# File 'lib/arjdbc/derby/adapter.rb', line 332

def quoted_false
  '0'
end

#quoted_trueObject



328
329
330
# File 'lib/arjdbc/derby/adapter.rb', line 328

def quoted_true
  '1'
end

#recreate_database(db_name) ⇒ Object



318
319
320
321
322
# File 'lib/arjdbc/derby/adapter.rb', line 318

def recreate_database(db_name)
  tables.each do |t|
    drop_table t
  end
end

#remove_column(table_name, column_name) ⇒ Object



259
260
261
# File 'lib/arjdbc/derby/adapter.rb', line 259

def remove_column(table_name, column_name)
  execute "ALTER TABLE #{quote_table_name(table_name)} DROP COLUMN #{quote_column_name(column_name)} RESTRICT"
end

#remove_index(table_name, options) ⇒ Object

:nodoc:



128
129
130
# File 'lib/arjdbc/derby/adapter.rb', line 128

def remove_index(table_name, options) #:nodoc:
  execute "DROP INDEX #{index_name(table_name, options)}"
end

#rename_column(table_name, column_name, new_column_name) ⇒ Object

:nodoc:



302
303
304
# File 'lib/arjdbc/derby/adapter.rb', line 302

def rename_column(table_name, column_name, new_column_name) #:nodoc:
  execute "RENAME COLUMN #{quote_table_name(table_name)}.#{quote_column_name(column_name)} TO #{quote_column_name(new_column_name)}"
end

#rename_table(name, new_name) ⇒ Object



132
133
134
# File 'lib/arjdbc/derby/adapter.rb', line 132

def rename_table(name, new_name)
  execute "RENAME TABLE #{quote_table_name(name)} TO #{quote_table_name(new_name)}"
end

#reset_pk_sequence!(table, pk = nil, sequence = nil) ⇒ Object



119
120
121
122
123
124
125
126
# File 'lib/arjdbc/derby/adapter.rb', line 119

def reset_pk_sequence!(table, pk = nil, sequence = nil)
  klasses = classes_for_table_name(table)
  klass   = klasses.nil? ? nil : klasses.first
  pk      = klass.primary_key unless klass.nil?
  if pk && klass.columns_hash[pk].type == :integer
    reset_sequence!(klass.table_name, pk)
  end
end

#reset_sequence!(table, column, sequence = nil) ⇒ Object

Set the sequence to the max value of the table’s column.



114
115
116
117
# File 'lib/arjdbc/derby/adapter.rb', line 114

def reset_sequence!(table, column, sequence = nil)
  mpk = select_value("SELECT MAX(#{quote_column_name(column)}) FROM #{quote_table_name(table)}")
  execute("ALTER TABLE #{quote_table_name(table)} ALTER COLUMN #{quote_column_name(column)} RESTART WITH #{mpk.to_i + 1}")
end

#strip_quotes(str) ⇒ Object



143
144
145
146
147
# File 'lib/arjdbc/derby/adapter.rb', line 143

def strip_quotes(str)
  return str unless str
  return str unless /^(["']).*\1$/ =~ str
  str[1..-2]
end

#structure_dumpObject

:nodoc:



217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/arjdbc/derby/adapter.rb', line 217

def structure_dump #:nodoc:
  definition=""
  rs = @connection.connection..getTables(nil,nil,nil,["TABLE"].to_java(:string))
  while rs.next
    tname = rs.getString(3)
    definition << "CREATE TABLE #{tname} (\n"
    rs2 = @connection.connection..getColumns(nil,nil,tname,nil)
    first_col = true
    while rs2.next
      col_name = add_quotes(rs2.getString(4));
      default = ""
      d1 = rs2.getString(13)
      if d1 =~ /^GENERATED_/
        default = auto_increment_stmt(tname, col_name)
      elsif d1
        default = " DEFAULT #{d1}"
      end

      type = rs2.getString(6)
      col_size = rs2.getString(7)
      nulling = (rs2.getString(18) == 'NO' ? " NOT NULL" : "")
      create_col_string = add_quotes(expand_double_quotes(strip_quotes(col_name))) +
        " " +
        type +
        (SIZEABLE.include?(type) ? "(#{col_size})" : "") +
        nulling +
        default
      if !first_col
        create_col_string = ",\n #{create_col_string}"
      else
        create_col_string = " #{create_col_string}"
      end

      definition << create_col_string

      first_col = false
    end
    definition << ");\n\n"
  end
  definition
end

#tablesObject



314
315
316
# File 'lib/arjdbc/derby/adapter.rb', line 314

def tables
  @connection.tables(nil, derby_schema)
end

#type_to_sql(type, limit = nil, precision = nil, scale = nil) ⇒ Object

Convert the specified column type to a SQL string. In Derby, the following cannot specify a limit:

  • integer

  • boolean (smallint)

  • datetime (timestamp)

  • date



84
85
86
87
88
89
# File 'lib/arjdbc/derby/adapter.rb', line 84

def type_to_sql(type, limit = nil, precision = nil, scale = nil) #:nodoc:
  return super unless [:integer, :boolean, :timestamp, :datetime, :date].include? type

  native = native_database_types[type.to_s.downcase.to_sym]
  native.is_a?(Hash) ? native[:name] : native
end