Module: ArJdbc::MsSQL::Column

Defined in:
lib/arjdbc/mssql/adapter.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#identityObject

Returns the value of attribute identity.



87
88
89
# File 'lib/arjdbc/mssql/adapter.rb', line 87

def identity
  @identity
end

#is_specialObject

Returns the value of attribute is_special.



87
88
89
# File 'lib/arjdbc/mssql/adapter.rb', line 87

def is_special
  @is_special
end

Class Method Details

.string_to_binary(value) ⇒ Object

These methods will only allow the adapter to insert binary data with a length of 7K or less because of a SQL Server statement length policy.



180
181
182
# File 'lib/arjdbc/mssql/adapter.rb', line 180

def self.string_to_binary(value)
  ''
end

Instance Method Details

#cast_to_date(value) ⇒ Object



151
152
153
154
# File 'lib/arjdbc/mssql/adapter.rb', line 151

def cast_to_date(value)
  return value if value.is_a?(Date)
  return Date.parse(value) rescue nil
end

#cast_to_datetime(value) ⇒ Object



156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/arjdbc/mssql/adapter.rb', line 156

def cast_to_datetime(value)
  if value.is_a?(Time)
    if value.year != 0 and value.month != 0 and value.day != 0
      return value
    else
      return Time.mktime(2000, 1, 1, value.hour, value.min, value.sec) rescue nil
    end
  end
  if value.is_a?(DateTime)
    begin
      # Attempt to convert back to a Time, but it could fail for dates significantly in the past/future.
      return Time.mktime(value.year, value.mon, value.day, value.hour, value.min, value.sec)
    rescue ArgumentError
      return value
    end
  end

  return cast_to_time(value) if value.is_a?(Date) or value.is_a?(String) rescue nil

  return value.is_a?(Date) ? value : nil
end

#cast_to_time(value) ⇒ Object



146
147
148
149
# File 'lib/arjdbc/mssql/adapter.rb', line 146

def cast_to_time(value)
  return value if value.is_a?(Time)
  DateTime.parse(value).to_time rescue nil
end

#default_value(value) ⇒ Object



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

def default_value(value)
  return $1 if value =~ /^\(N?'(.*)'\)$/
  value
end

#extract_limit(sql_type) ⇒ Object



129
130
131
132
133
134
135
136
# File 'lib/arjdbc/mssql/adapter.rb', line 129

def extract_limit(sql_type)
  case sql_type
  when /text|ntext|xml|binary|image|varbinary|bit/
    nil
  else
    super
  end
end

#is_utf8?Boolean

Returns:

  • (Boolean)


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

def is_utf8?
  sql_type =~ /nvarchar|ntext|nchar/i
end

#simplified_type(field_type) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# File 'lib/arjdbc/mssql/adapter.rb', line 89

def simplified_type(field_type)
  case field_type
  when /int|bigint|smallint|tinyint/i           then :integer
  when /numeric/i                               then (@scale.nil? || @scale == 0) ? :integer : :decimal
  when /float|double|money|real|smallmoney/i    then :decimal
  when /datetime|smalldatetime/i                then :datetime
  when /timestamp/i                             then :timestamp
  when /time/i                                  then :time
  when /date/i                                  then :date
  when /text|ntext|xml/i                        then :text
  when /binary|image|varbinary/i                then :binary
  when /char|nchar|nvarchar|string|varchar/i    then (@limit == 1073741823 ? (@limit = nil; :text) : :string)
  when /bit/i                                   then :boolean
  when /uniqueidentifier/i                      then :string
  else
    super
  end
end

#type_cast(value) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/arjdbc/mssql/adapter.rb', line 113

def type_cast(value)
  return nil if value.nil? || value == "(null)" || value == "(NULL)"
  case type
  when :integer then value.delete('()').to_i rescue unquote(value).to_i rescue value ? 1 : 0
  when :primary_key then value == true || value == false ? value == true ? 1 : 0 : value.to_i
  when :decimal   then self.class.value_to_decimal(unquote(value))
  when :datetime  then cast_to_datetime(value)
  when :timestamp then cast_to_time(value)
  when :time      then cast_to_time(value)
  when :date      then cast_to_date(value)
  when :boolean   then value == true or (value =~ /^t(rue)?$/i) == 0 or unquote(value)=="1"
  when :binary    then unquote value
  else value
  end
end

#unquote(value) ⇒ Object



142
143
144
# File 'lib/arjdbc/mssql/adapter.rb', line 142

def unquote(value)
  value.to_s.sub(/\A\([\(\']?/, "").sub(/[\'\)]?\)\Z/, "")
end