|
Home > Archive > MS SQL Server security > October 2006 > Help on the unicode
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Help on the unicode
|
|
| Jeremy20 2006-10-25, 6:01 am |
|
Hi,
im required to display chinese names out using ms sql server but i do
know how to use the unicode. Can anyone help me along with it?
Thanks,
Jeremy
--
Jeremy20
------------------------------------------------------------------------
Posted via http://www.webservertalk.com
------------------------------------------------------------------------
View this thread: http://www.webservertalk.com/message1682107.html
| |
| Uri Dimant 2006-10-25, 6:01 am |
| Jeremy20
CREATE TABLE #T (c NAVARCHAR(50))
INSERT INTO #T VALUES (N'Chineswordshere')
"Jeremy20" <Jeremy20.2etzkb@mail.webservertalk.com> wrote in message
news:Jeremy20.2etzkb@mail.webservertalk.com...
>
> Hi,
> im required to display chinese names out using ms sql server but i do
> know how to use the unicode. Can anyone help me along with it?
>
> Thanks,
> Jeremy
>
>
>
> --
> Jeremy20
> ------------------------------------------------------------------------
> Posted via http://www.webservertalk.com
> ------------------------------------------------------------------------
> View this thread: http://www.webservertalk.com/message1682107.html
>
|
|
|
|
|