Module: ArJdbc::HSQLDB

Included in:
H2
Defined in:
lib/arjdbc/hsqldb/adapter.rb

Defined Under Namespace

Modules: Column

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.column_selectorObject



3
4
5
# File 'lib/arjdbc/hsqldb/adapter.rb', line 3

def self.column_selector
  [/hsqldb|\.h2\./i, lambda {|cfg,col| col.extend(::ArJdbc::HSQLDB::Column)}]
end

Instance Method Details

#_execute(sql, name = nil) ⇒ Object



137
138
139
140
# File 'lib/arjdbc/hsqldb/adapter.rb', line 137

def _execute(sql, name = nil)
  result = super
  ActiveRecord::ConnectionAdapters::JdbcConnection::insert?(sql) ? last_insert_id : result
end

#adapter_nameObject

:nodoc:



37
38
39
# File 'lib/arjdbc/hsqldb/adapter.rb', line 37

def adapter_name #:nodoc:
  'Hsqldb'
end

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



104
105
106
107
108
# File 'lib/arjdbc/hsqldb/adapter.rb', line 104

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_limit_offset!(sql, options) ⇒ Object

:nodoc:



142
143
144
145
146
147
148
149
150
151
152
# File 'lib/arjdbc/hsqldb/adapter.rb', line 142

def add_limit_offset!(sql, options) #:nodoc:
  if sql =~ /^select/i
    offset = options[:offset] || 0
    bef = sql[7..-1]
    if limit = options[:limit]
      sql.replace "SELECT LIMIT #{offset} #{limit} #{bef}"
    elsif offset > 0
      sql.replace "SELECT LIMIT #{offset} 0 #{bef}"
    end
  end
end

#arel2_visitorsObject



41
42
43
44
# File 'lib/arjdbc/hsqldb/adapter.rb', line 41

def arel2_visitors
  require 'arel/visitors/hsqldb'
  {'hsqldb' => ::Arel::Visitors::HSQLDB, 'jdbchsqldb' => ::Arel::Visitors::HSQLDB}
end

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

:nodoc:



110
111
112
# File 'lib/arjdbc/hsqldb/adapter.rb', line 110

def change_column(table_name, column_name, type, options = {}) #:nodoc:
  execute "ALTER TABLE #{table_name} ALTER COLUMN #{column_name} #{type_to_sql(type, options[:limit])}"
end

#change_column_default(table_name, column_name, default) ⇒ Object

:nodoc:



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

def change_column_default(table_name, column_name, default) #:nodoc:
  execute "ALTER TABLE #{table_name} ALTER COLUMN #{column_name} SET DEFAULT #{quote(default)}"
end

#create_database(name) ⇒ Object

do nothing since database gets created upon connection. However this method gets called by rails db rake tasks so now we’re avoiding method_missing error



175
176
# File 'lib/arjdbc/hsqldb/adapter.rb', line 175

def create_database(name)
end

#drop_database(name) ⇒ Object



178
179
180
# File 'lib/arjdbc/hsqldb/adapter.rb', line 178

def drop_database(name)
  execute("DROP ALL OBJECTS")
end

#last_insert_idObject



133
134
135
# File 'lib/arjdbc/hsqldb/adapter.rb', line 133

def last_insert_id
  Integer(select_value("CALL IDENTITY()"))
end

#modify_types(tp) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/arjdbc/hsqldb/adapter.rb', line 46

def modify_types(tp)
  tp[:primary_key] = "INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 0) PRIMARY KEY"
  tp[:integer][:limit] = nil
  tp[:boolean][:limit] = nil
  # set text and float limits so we don't see odd scales tacked on
  # in migrations
  tp[:boolean] = { :name => "tinyint" }
  tp[:text][:limit] = nil
  tp[:float][:limit] = 17 if defined?(::Jdbc::H2)
  tp[:string][:limit] = 255
  tp[:datetime] = { :name => "DATETIME" }
  tp[:timestamp] = { :name => "DATETIME" }
  tp[:time] = { :name => "TIME" }
  tp[:date] = { :name => "DATE" }
  tp
end

#quote(value, column = nil) ⇒ Object

:nodoc:



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/arjdbc/hsqldb/adapter.rb', line 63

def quote(value, column = nil) # :nodoc:
  return value.quoted_id if value.respond_to?(:quoted_id)

  case value
  when String
    if respond_to?(:h2_adapter) && value.empty?
      "''"
    elsif column && column.type == :binary
      "'#{value.unpack("H*")}'"
    elsif column && (column.type == :integer ||
                     column.respond_to?(:primary) && column.primary && column.klass != String)
      value.to_i.to_s
    else
      "'#{quote_string(value)}'"
    end
  else
    super
  end
end

#quote_column_name(name) ⇒ Object

:nodoc:



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

def quote_column_name(name) #:nodoc:
  name = name.to_s
  if name =~ /[-]/
    %Q{"#{name.upcase}"}
  else
    name
  end
end

#quote_string(str) ⇒ Object



92
93
94
# File 'lib/arjdbc/hsqldb/adapter.rb', line 92

def quote_string(str)
  str.gsub(/'/, "''")
end

#quoted_falseObject



100
101
102
# File 'lib/arjdbc/hsqldb/adapter.rb', line 100

def quoted_false
  '0'
end

#quoted_trueObject



96
97
98
# File 'lib/arjdbc/hsqldb/adapter.rb', line 96

def quoted_true
  '1'
end

#recreate_database(name) ⇒ Object



168
169
170
# File 'lib/arjdbc/hsqldb/adapter.rb', line 168

def recreate_database(name)
  drop_database(name)
end

#remove_index(table_name, options = {}) ⇒ Object



164
165
166
# File 'lib/arjdbc/hsqldb/adapter.rb', line 164

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

#rename_column(table_name, column_name, new_column_name) ⇒ Object

:nodoc:



118
119
120
# File 'lib/arjdbc/hsqldb/adapter.rb', line 118

def rename_column(table_name, column_name, new_column_name) #:nodoc:
  execute "ALTER TABLE #{table_name} ALTER COLUMN #{column_name} RENAME TO #{new_column_name}"
end

#rename_table(name, new_name) ⇒ Object



129
130
131
# File 'lib/arjdbc/hsqldb/adapter.rb', line 129

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

#tablesObject

override to filter out system tables that otherwise end up in db/schema.rb during migrations. JdbcConnection#tables now takes an optional block filter so we can screen out rows corresponding to system tables. HSQLDB names its system tables SYSTEM.*, but H2 seems to name them without any kind of convention



160
161
162
# File 'lib/arjdbc/hsqldb/adapter.rb', line 160

def tables
  @connection.tables.select {|row| row.to_s !~ /^system_/i }
end

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

Maps logical Rails types to MySQL-specific data types.



123
124
125
126
127
# File 'lib/arjdbc/hsqldb/adapter.rb', line 123

def type_to_sql(type, limit = nil, precision = nil, scale = nil)
  return super if defined?(::Jdbc::H2) || type.to_s != 'integer' || limit == nil

  type
end