Posted by: Lackadaisical March 8, 2010
Nepali Characters In Sql Table
Login in to Rate this Post:     0       ?        
On top of using nvarchar data type you also need to implement "N" in front of the string to be inserted in any other script than the default server language/colation.

INSERT INTO MyTable(EnglishCol, NepaliCol) VALUES ('English Name', N'नेपाली नाम')

This is specific for MS-SQL and might not be same for MySQL
Last edited: 08-Mar-10 10:35 AM
Last edited: 08-Mar-10 10:36 AM
Read Full Discussion Thread for this article