Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Inserting Chinese / Arabic characters

Author  Topic 

zyad
Starting Member

1 Post

Posted - 2005-03-07 : 14:08:32
Hi,

I'm trying to insert arabic/chinese characters in SQL server, using stored procedures.
I managed to do this in my asp.net code without stored precedures, but when I try to do the same using stored procedures I get characters like ???? instead.

What I am doing wrong ?

TG
Master Smack Fu Yak Hacker

6065 Posts

Posted - 2005-03-07 : 14:36:32
Columns and variables/parameters need to be declared as NVarchar or NChar. (UNICODE UCS-2 character set)

Be One with the Optimizer
TG
Go to Top of Page
   

- Advertisement -