I have table and CVS file what i want to do is from csv have to update the table.
csv file as follows (no delta) 1,yes 2,no 3,yes 4,yes
Steps through java
what i have did is read the csv file and make two lists like yesContainList,noContainList in that list added the id values which has yes and no seperately
make the list as coma seperated strinh
Update the table with the comma seperated string
Its working fine. but if i want to handle lakhs of records means somewhat slow.
Could anyone tell whether is it correct way or any best way to do this update?