# File lib/arjdbc/informix/adapter.rb, line 31 def self.column_selector [ /informix/, lambda { |cfg, column| column.extend(::ArJdbc::Informix::Column) } ] end
# File lib/arjdbc/informix/adapter.rb, line 8 def self.extended(base) unless @@_lob_callback_added ActiveRecord::Base.class_eval do def after_save_with_informix_lob lob_columns = self.class.columns.select { |c| [:text, :binary].include?(c.type) } lob_columns.each do |column| value = ::ArJdbc::SerializedAttributesHelper.dump_column_value(self, column) next if value.nil? || (value == '') connection.write_large_object( column.type == :binary, column.name, self.class.table_name, self.class.primary_key, quote_value(id), value ) end end end ActiveRecord::Base.after_save :after_save_with_informix_lob @@_lob_callback_added = true end end
# File lib/arjdbc/informix/adapter.rb, line 81 def add_limit_offset!(sql, options) if options[:limit] limit = "FIRST #{options[:limit]}" # SKIP available only in IDS >= 10 : offset = (db_major_version >= 10 && options[:offset] ? "SKIP #{options[:offset]}" : "") sql.sub!(/^\s*?select /, "SELECT #{offset} #{limit} ") end sql end
# File lib/arjdbc/informix/adapter.rb, line 11 def after_save_with_informix_lob lob_columns = self.class.columns.select { |c| [:text, :binary].include?(c.type) } lob_columns.each do |column| value = ::ArJdbc::SerializedAttributesHelper.dump_column_value(self, column) next if value.nil? || (value == '') connection.write_large_object( column.type == :binary, column.name, self.class.table_name, self.class.primary_key, quote_value(id), value ) end end
# File lib/arjdbc/informix/adapter.rb, line 111 def create_table(name, options = {}) super(name, options) execute("CREATE SEQUENCE #{name}_seq") end
# File lib/arjdbc/informix/adapter.rb, line 77 def default_sequence_name(table, column) "#{table}_seq" end
# File lib/arjdbc/informix/adapter.rb, line 121 def drop_table(name) super(name) execute("DROP SEQUENCE #{name}_seq") end
# File lib/arjdbc/informix/adapter.rb, line 53 def modify_types(types) super(types) types[:primary_key] = "SERIAL PRIMARY KEY" types[:string] = { :name => "VARCHAR", :limit => 255 } types[:integer] = { :name => "INTEGER" } types[:float] = { :name => "FLOAT" } types[:decimal] = { :name => "DECIMAL" } types[:datetime] = { :name => "DATETIME YEAR TO FRACTION(5)" } types[:timestamp] = { :name => "DATETIME YEAR TO FRACTION(5)" } types[:time] = { :name => "DATETIME HOUR TO FRACTION(5)" } types[:date] = { :name => "DATE" } types[:binary] = { :name => "BYTE" } types[:boolean] = { :name => "BOOLEAN" } types end
# File lib/arjdbc/informix/adapter.rb, line 90 def next_sequence_value(sequence_name) select_one("SELECT #{sequence_name}.nextval id FROM systables WHERE tabid=1")['id'] end
# File lib/arjdbc/informix/adapter.rb, line 69 def prefetch_primary_key?(table_name = nil) true end
# File lib/arjdbc/informix/adapter.rb, line 99 def quote(value, column = nil) column_type = column && column.type if column_type == :binary || column_type == :text # LOBs are updated separately by an after_save trigger. "NULL" elsif column_type == :date "'#{value.mon}/#{value.day}/#{value.year}'" else super end end
TODO: Add some smart quoting for newlines in string and text fields.
# File lib/arjdbc/informix/adapter.rb, line 95 def quote_string(string) string.gsub(/\'/, "''") end
# File lib/arjdbc/informix/adapter.rb, line 126 def remove_index(table_name, options = {}) @connection.execute_update("DROP INDEX #{index_name(table_name, options)}") end
# File lib/arjdbc/informix/adapter.rb, line 116 def rename_table(name, new_name) execute("RENAME TABLE #{name} TO #{new_name}") execute("RENAME SEQUENCE #{name}_seq TO #{new_name}_seq") end
Generated with the Darkfish Rdoc Generator 2.