使用C#中的Marathi语言从SQL检索数据

时间:2016-01-29 11:15:57

标签: c# sql-server

Please find the image of table 我正在开发一个使用C#的Windows应用程序。我想用Marathi语言从用户那里获取输入,并将其保存在SQL Server数据库中。还可以用Marathi语言从SQL服务器检索数据。我尝试使用以下查询,但它没有奏效。所以我的问题是如何保存和检索它呢?

例如:

public class Branch extends Composite implements Embeddable {
    EmbeddableDelegate delegate;
}

public class Leaf implements Embeddable {
    EmbeddableDelegate delegate;
}

public class EmbeddableDelegate [implements Embeddable] {
    private short xOffset, yOffset, zOffset;
    private Container parent;

1 个答案:

答案 0 :(得分:2)

您应该在值之前使用N,数据类型应为nvarchar

Select Company from Master_Item where Item_Name =  N'मोबाईल'

来源:http://www.codeproject.com/Questions/305931/Save-Hindi-Marthi-Content-in-Sql-Server-database