Click here to Skip to main content
15,886,519 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am unable to insert Hindi characters in Oracle 10g database. Whatever I try to insert appears as ?????? in database.

I converted datatype to NVarchar and tried to insert using following command

Insert into MyTable (MyColumn) values (N'MyUnicodeString');

Still appears as ?????

Tried to do same by passing parameters still not working.

Any help?
Posted
Comments
Bernhard Hiller 4-Mar-14 5:33am    
Where do you enter that command - in a browser, in a .Net application, ...?
Where do you see the question marks?

Change your data type of database from nvarchar to NTEXT.
It will solve your problem.
 
Share this answer
 
Please refer to this link to understand how to store and retrieve data in devnagari script.
 
Share this answer
 

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