I want to update through the SqlDataAdapter, do not delete and insert first, modify the record of a certain row directly in the returned table, and then update the data source, what should I do? After trying for a long time without success
select * from tablename where = condition // remove the same records
Locate a record update:
update tablename
set deptno = 20
where rownum = record number;