G
Guest
So, we're converting a large ASP.Net application from ASCII only to Unicode.
The only issue we've run into, on SQL Server, is the N prefix for literals.
We create all our Sql statements dynamically, and most of the time we do not
(yet) use bind variables, we just construct the Sqls.
So the questions is: Is it possible to add the N prefix "automagically"
somehow? I guess the answer is; No, unless you use bind variables
(Parameters). If so; how would I make this happen?
The only issue we've run into, on SQL Server, is the N prefix for literals.
We create all our Sql statements dynamically, and most of the time we do not
(yet) use bind variables, we just construct the Sqls.
So the questions is: Is it possible to add the N prefix "automagically"
somehow? I guess the answer is; No, unless you use bind variables
(Parameters). If so; how would I make this happen?