Click here to Skip to main content
15,884,778 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a situation where i need to store data in both tradtional chinese and simplified chinese.

The stored procedure will be like:

PROCEDURE SP_TEST_INS_CHINESE_NAME(i_c_name IN NVARCHAR) AUTHID AS CURRENT_USER AS

BEGIN

INSERT INTO TB_TEST_C_NAME (TRADITIONAL_NAME, SIMPLIFIED_NAME) VALUES(i_c_name, ***convert i_c_name to SIMPLIFIED CHINESE***);
END


Is it possible to perform such a conversion? Appreciate some help here.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900