3 implementations of IDbDataAdapter
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
12public abstract class DbDataAdapter : DataAdapter, IDbDataAdapter, ICloneable
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataAdapter.cs (1)
11public sealed class OdbcDataAdapter : DbDataAdapter, IDbDataAdapter, ICloneable
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
154public sealed partial class OleDbDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
17 references to IDbDataAdapter
netstandard (1)
netstandard.cs (1)
542[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.IDbDataAdapter))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
108[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.IDbDataAdapter))]
System.Data.Common (7)
System\Data\Common\DbDataAdapter.cs (7)
43private IDbDataAdapter _IDbDataAdapter 67IDbCommand? IDbDataAdapter.DeleteCommand 107IDbCommand? IDbDataAdapter.InsertCommand 135IDbCommand? IDbDataAdapter.SelectCommand 179IDbCommand? IDbDataAdapter.UpdateCommand 245IDbDataAdapter pfrom = from._IDbDataAdapter; 272IDbDataAdapter pthis = this; // must cast to interface to obtain correct value
System.Data.Odbc (4)
System\Data\Odbc\OdbcDataAdapter.cs (4)
52IDbCommand? IDbDataAdapter.DeleteCommand 66IDbCommand? IDbDataAdapter.InsertCommand 80IDbCommand? IDbDataAdapter.SelectCommand 94IDbCommand? IDbDataAdapter.UpdateCommand
System.Data.OleDb (4)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (4)
169System.Data.IDbCommand? System.Data.IDbDataAdapter.DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } } 170System.Data.IDbCommand? System.Data.IDbDataAdapter.InsertCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } } 171System.Data.IDbCommand? System.Data.IDbDataAdapter.SelectCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } } 172System.Data.IDbCommand? System.Data.IDbDataAdapter.UpdateCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }