Consistency of Reads between C# applications
We are having strange timing issues with our C# code
using Oracle.DataAccess 2.112.2. We have one application that calls a
method that updates several columns in an Oracle table using an
OracleDataAdapter class. A second application reads that updated data
from the same columns in the same table. For some reason, the second
application doesn’t always read updated data; it reads the original data.
We cannot figure out why the OracleDataAdapter is not picking up the updated
values from the table.
0