Class: DBF::ColumnType::Memo

Inherits:
Base
  • Object
show all
Defined in:
lib/dbf/column_type.rb

Instance Attribute Summary

Attributes inherited from Base

#decimal, #encoding

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from DBF::ColumnType::Base

Instance Method Details

#type_cast(value) ⇒ Object

Parameters:



96
97
98
99
100
101
102
# File 'lib/dbf/column_type.rb', line 96

def type_cast(value)
  if encoding && !value.nil?
    value.force_encoding(@encoding).encode(Encoding.default_external, undef: :replace, invalid: :replace)
  else
    value
  end
end