4
Answers

Keyword Not Supported UNICODE in visual studio

NIK VYAVAHARE

NIK VYAVAHARE

9y
848
1
Hello,i'm Using Visual Studio 10 and as a back end using oracle 9 i,when i do operations on data like insert,update,delete through web form i got the error that keyword UNICODE is not supported. Please suggest me and Thanks in Advance.
I have wriiten my conncetion string as like,
<add name="conn"  connectionstring="Data Source=CGS1DB15; User ID=cgs1db; unicode=true"/> 
Answers (4)
0
Javeed M Shaikh

Javeed M Shaikh

NA 7.8k 69.7k 11y
can you try to set some hard coded value like this:

timetablegrid.Rows[row].Cells[column].Value = "sample text";
0
darma teja

darma teja

NA 493 194.2k 11y
Hi,

gridView.Rows[1].Cells[1].Value= "text here";

Darma