Module: JdbcSpec::MsSQL::Column
- Defined in:
- lib/jdbc_adapter/jdbc_mssql.rb
Instance Attribute Summary collapse
-
#identity ⇒ Object
Returns the value of attribute identity.
-
#is_special ⇒ Object
Returns the value of attribute is_special.
Class Method Summary collapse
-
.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.
Instance Method Summary collapse
- #cast_to_date(value) ⇒ Object
- #cast_to_datetime(value) ⇒ Object
- #cast_to_time(value) ⇒ Object
- #default_value(value) ⇒ Object
- #is_utf8? ⇒ Boolean
- #simplified_type(field_type) ⇒ Object
- #type_cast(value) ⇒ Object
- #unquote(value) ⇒ Object
Instance Attribute Details
#identity ⇒ Object
Returns the value of attribute identity.
78 79 80 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 78 def identity @identity end |
#is_special ⇒ Object
Returns the value of attribute is_special.
78 79 80 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 78 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.
155 156 157 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 155 def self.string_to_binary(value) '' end |
Instance Method Details
#cast_to_date(value) ⇒ Object
136 137 138 139 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 136 def cast_to_date(value) return value if value.is_a?(Date) return Date.parse(value) rescue nil end |
#cast_to_datetime(value) ⇒ Object
141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 141 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 return cast_to_time(value) if value.is_a?(Date) or value.is_a?(String) rescue nil value end |
#cast_to_time(value) ⇒ Object
127 128 129 130 131 132 133 134 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 127 def cast_to_time(value) return value if value.is_a?(Time) time_array = ParseDate.parsedate(value) time_array[0] ||= 2000 time_array[1] ||= 1 time_array[2] ||= 1 Time.send(ActiveRecord::Base.default_timezone, *time_array) rescue nil end |
#default_value(value) ⇒ Object
97 98 99 100 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 97 def default_value(value) return $1 if value =~ /^\(N?'(.*)'\)$/ value end |
#is_utf8? ⇒ Boolean
119 120 121 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 119 def is_utf8? sql_type =~ /nvarchar|ntext|nchar/i end |
#simplified_type(field_type) ⇒ Object
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 80 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|decimal|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/i then :text when /binary|image|varbinary/i then :binary when /char|nchar|nvarchar|string|varchar/i then :string when /bit/i then :boolean when /uniqueidentifier/i then :string end end |
#type_cast(value) ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 102 def type_cast(value) return nil if value.nil? || value == "(null)" || value == "(NULL)" case type when :integer then 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
123 124 125 |
# File 'lib/jdbc_adapter/jdbc_mssql.rb', line 123 def unquote(value) value.to_s.sub(/\A\([\(\']?/, "").sub(/[\'\)]?\)\Z/, "") end |