Displaying 1 result from an estimated 1 matches for "anvarchar".
Did you mean:
nvarchar
2008 Feb 20
0
Unicode Support for MS SQL Server
...;'"
when Date then "''#{value.strftime("%Y%m
%d")}''"
when String, ActiveSupport::Multibyte::Chars
qvalue = super
qvalue = "N#{qvalue}" if !column.nil? && column.sql_type
=~ /\Anvarchar/
qvalue
else
super
end
end
This passed the several tests I wrote for it and otherwise seemed to
pass the couple of AR tests I ran against it. (There''s another nice
bug in the SQL Server adapter that puts the value ''NULL'' i...