3 implementations of IDbDataAdapter
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
12
public abstract class DbDataAdapter : DataAdapter,
IDbDataAdapter
, ICloneable
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataAdapter.cs (1)
11
public sealed class OdbcDataAdapter : DbDataAdapter,
IDbDataAdapter
, ICloneable
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
166
public 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)
43
private
IDbDataAdapter
_IDbDataAdapter
67
IDbCommand?
IDbDataAdapter
.DeleteCommand
107
IDbCommand?
IDbDataAdapter
.InsertCommand
135
IDbCommand?
IDbDataAdapter
.SelectCommand
179
IDbCommand?
IDbDataAdapter
.UpdateCommand
245
IDbDataAdapter
pfrom = from._IDbDataAdapter;
272
IDbDataAdapter
pthis = this; // must cast to interface to obtain correct value
System.Data.Odbc (4)
System\Data\Odbc\OdbcDataAdapter.cs (4)
52
IDbCommand?
IDbDataAdapter
.DeleteCommand
66
IDbCommand?
IDbDataAdapter
.InsertCommand
80
IDbCommand?
IDbDataAdapter
.SelectCommand
94
IDbCommand?
IDbDataAdapter
.UpdateCommand
System.Data.OleDb (4)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (4)
181
System.Data.IDbCommand? System.Data.
IDbDataAdapter
.DeleteCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
182
System.Data.IDbCommand? System.Data.
IDbDataAdapter
.InsertCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
183
System.Data.IDbCommand? System.Data.
IDbDataAdapter
.SelectCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
184
System.Data.IDbCommand? System.Data.
IDbDataAdapter
.UpdateCommand { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }