G
Glen
I'm trying to convert from using System.Data.SqlClient to using
System.Data.Common.
Everything is looking good, except that the events RowUpdating and
RowUpdated do not exist in the DbDataAdapter.
So,
SqlDataAdapter.RowUpdating
and
OracleDataAdapter.RowUpdating
do not have a matching event in DbDataAdapter.
How do I do these events if using DbDataAdapter?
Do I need to revert to directly coding against Oracle and Sql ? If so, that
would be the only point in the code that is not relying on the Common
library.
Glen
System.Data.Common.
Everything is looking good, except that the events RowUpdating and
RowUpdated do not exist in the DbDataAdapter.
So,
SqlDataAdapter.RowUpdating
and
OracleDataAdapter.RowUpdating
do not have a matching event in DbDataAdapter.
How do I do these events if using DbDataAdapter?
Do I need to revert to directly coding against Oracle and Sql ? If so, that
would be the only point in the code that is not relying on the Common
library.
Glen