rospcc
asked on
Store Thai and Korean Characters
Hi,
Can we store both Thai and Korean characters in one table in MS SQL Database?
Regards,
rospcc
Can we store both Thai and Korean characters in one table in MS SQL Database?
Regards,
rospcc
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
How can I do that? I have tried to set the Windows Collation to Korean_Wansung_Unicode, it didn't work :(
Could you lead me on how to do it as unicode?
Regards,
rospcc
Could you lead me on how to do it as unicode?
Regards,
rospcc
select * from ::fn_helpCollations() will give you the list of collations available
Also do u have Korean font installed on ur computer
Also do u have Korean font installed on ur computer
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Hi,
More information, I just tried to use SQL Syntax and execute from the Enterprise Manager direct, it was being updated as ???????, not the exact korean characters.
UPDATE CriteriaDetail
SET CriteriaDesc = 'ㅇㅁㅁ& #12615; 2596;~ 22;ㄴ ;ㅁ& #12622; 0751;~ 09;ㅁ ;ㅇ& #12596; 2601;'
WHERE (PKCriteriaDetail = 604)
More information, I just tried to use SQL Syntax and execute from the Enterprise Manager direct, it was being updated as ???????, not the exact korean characters.
UPDATE CriteriaDetail
SET CriteriaDesc = 'ㅇㅁㅁ&
WHERE (PKCriteriaDetail = 604)
try to update it from the front end.
ASKER
oo actually the CriteriaDesc that I posted was in Korean Characters, I didn;'t know it is being shown as ㅇㅁㅁ&# 12615; 596;Ӯ 2;ㄴ ㅁ&# 12622;2 751;Ӭ 9;ㅁ ㅇ&# 12596; 601;
Anyway, what do you mean by front end? Updating through JSP itself?
Regards,
rospcc
Anyway, what do you mean by front end? Updating through JSP itself?
Regards,
rospcc
yes.. try to update thru the JSP page and retriew the data and show it at the front end. This is just for testing
ASKER
This is the first way that I did, and it didn't work. I used UTF-8 as the encoding, and it was stored as question marks ?????????
I can input Thai from JSP, encoded using UTF-8 as well, it is stored correctly in database. But for korean, it just didn't work.
I can input Thai from JSP, encoded using UTF-8 as well, it is stored correctly in database. But for korean, it just didn't work.
Ok, Let me try
Hope this helps.
Regards,