Hi Friends,
i have small doubt i have 6 felids, this six felids saved one by one in same cell in mvc .
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeesh MenothPosted Jan 5, 2016, 1:01 PM
If you want to add multiple value in same coulmn.then you can use comma separated value like below example.
String data1 = "hello";
String data2 = "world";
String data3 = data1 + "," + data2;
retrieve part just remove the comma using replace function and save into array.
Manas MohapatraPosted Jan 5, 2016, 12:59 PM