I am working on C#
I have some values in an array .
Stirng [] values;
Some of the values inside array are in chinese value .
I have to put these values in Database. Before putting this in Database i want to find out which values are in Chinese.
So that i can create proper SQLString to Execute
check isChinese(String abc ){
**Condition for chinese unicode** ???
return true or false
}
____
if tovalue isChinese == true
SqlValue= N +" ' toValue ' "
else
SqlValue= SqlValue
SqlQuery = SqlQuery + SqlValue