I have a variable list of IDs. I want to update the "Status" column for each of those IDs in an Oracle database. I've searched and have come across the following options:
- OracleDataAdapter - Don't have a DataTable, only IDs
- for loop which contains UPDATE statement (could be thousands of UPDATEs)
- Stored Procedure - Hoping not to have to do this
Any help would be greatly appreciated. Thanks