Module Sequel::Plugins::ForceEncoding::InstanceMethods
In: lib/sequel/plugins/force_encoding.rb

Methods

Public Instance methods

Allow the force encoding plugin to work with the identity_map plugin by typecasting new values.

[Source]

    # File lib/sequel/plugins/force_encoding.rb, line 41
41:         def merge_db_update(row)
42:           super(force_hash_encoding(row))
43:         end

Force the encoding of all string values when setting the instance‘s values.

[Source]

    # File lib/sequel/plugins/force_encoding.rb, line 46
46:         def set_values(row)
47:           super(force_hash_encoding(row))
48:         end

[Validate]