2 types derived from DbDataAdapter
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\net9.0\System.Data.OleDb.notsupported.cs (1)
154public sealed partial class OleDbDataAdapter : System.Data.Common.DbDataAdapter, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
32 references to DbDataAdapter
netstandard (1)
netstandard.cs (1)
458[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.DbDataAdapter))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
30[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.Common.DbDataAdapter))]
System.Data.Common (26)
System\Data\Common\DBCommandBuilder.cs (9)
306private DbDataAdapter? _dataAdapter; 407public DbDataAdapter? DataAdapter 1154p.Value = ADP.IsNull(value) ? DbDataAdapter.s_parameterValueNullValue : DbDataAdapter.s_parameterValueNonNullValue; 1243DbDataAdapter? adapter = DataAdapter; 1295DbDataAdapter? adapter = DataAdapter; 1492DbDataAdapter? adapter = DataAdapter; 1572DbDataAdapter? adapter = DataAdapter; 1640protected abstract void SetRowUpdatingHandler(DbDataAdapter adapter);
System\Data\Common\DbDataAdapter.cs (15)
38protected DbDataAdapter(DbDataAdapter adapter) : base(adapter) 237DbDataAdapter clone = (DbDataAdapter)CloneInternals(); 243private void CloneFrom(DbDataAdapter from) 319return FillSchema(dataSet, schemaType, command!, DbDataAdapter.DefaultSourceTableName, cmdBehavior); 413IDbConnection activeConnection = DbDataAdapter.GetConnection3(command, ADP.FillSchema); 455return Fill(dataSet, 0, 0, DbDataAdapter.DefaultSourceTableName, selectCmd!, cmdBehavior); 619IDbConnection activeConnection = DbDataAdapter.GetConnection3(command, ADP.Fill); 764DataRowVersion version = DbDataAdapter.GetParameterSourceVersion(typeIndex, parameter); 844return Update(dataSet, DbDataAdapter.DefaultSourceTableName); 909tableMapping = new DataTableMapping(DbDataAdapter.DefaultSourceTableName, dataTable.TableName); 1200IDbConnection connection = DbDataAdapter.GetConnection1(this); 1218IDbConnection connection = DbDataAdapter.GetConnection4(dataCommand, statementType, isCommandFromRowUpdating); 1296IDbConnection connection = DbDataAdapter.GetConnection1(this); 1742private static IDbConnection GetConnection1(DbDataAdapter adapter)
System\Data\Common\DbProviderFactory.cs (2)
26using (DbDataAdapter? adapter = CreateDataAdapter()) 64public virtual DbDataAdapter? CreateDataAdapter() => null;
System.Data.Odbc (2)
System\Data\Odbc\OdbcCommandBuilder.cs (1)
291protected override void SetRowUpdatingHandler(DbDataAdapter adapter)
System\Data\Odbc\OdbcFactory.cs (1)
36public override DbDataAdapter CreateDataAdapter()
System.Data.OleDb (2)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (2)
79protected override void SetRowUpdatingHandler(System.Data.Common.DbDataAdapter adapter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } 276public override System.Data.Common.DbDataAdapter CreateDataAdapter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }