2 types derived from DbDataAdapter
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)
154
public sealed partial class OleDbDataAdapter : System.Data.Common.
DbDataAdapter
, System.Data.IDataAdapter, System.Data.IDbDataAdapter, System.ICloneable
37 references to DbDataAdapter
Microsoft.Data.Analysis (4)
DataFrame.IO.cs (2)
221
public static async Task<DataFrame> LoadFrom(
DbDataAdapter
adapter)
227
public void SaveTo(
DbDataAdapter
dataAdapter, DbProviderFactory factory)
Extensions.cs (2)
15
public static
DbDataAdapter
CreateDataAdapter(this DbProviderFactory factory, DbConnection connection, string tableName)
19
var
res = factory.CreateDataAdapter();
Microsoft.Data.Analysis.Tests (1)
DataFrame.IOTests.cs (1)
1211
using
var
dataAdapter = factory.CreateDataAdapter(connection, TableName);
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)
306
private
DbDataAdapter
? _dataAdapter;
407
public
DbDataAdapter
? DataAdapter
1154
p.Value = ADP.IsNull(value) ?
DbDataAdapter
.s_parameterValueNullValue :
DbDataAdapter
.s_parameterValueNonNullValue;
1243
DbDataAdapter
? adapter = DataAdapter;
1295
DbDataAdapter
? adapter = DataAdapter;
1492
DbDataAdapter
? adapter = DataAdapter;
1572
DbDataAdapter
? adapter = DataAdapter;
1640
protected abstract void SetRowUpdatingHandler(
DbDataAdapter
adapter);
System\Data\Common\DbDataAdapter.cs (15)
38
protected DbDataAdapter(
DbDataAdapter
adapter) : base(adapter)
237
DbDataAdapter
clone = (
DbDataAdapter
)CloneInternals();
243
private void CloneFrom(
DbDataAdapter
from)
319
return FillSchema(dataSet, schemaType, command!,
DbDataAdapter
.DefaultSourceTableName, cmdBehavior);
413
IDbConnection activeConnection =
DbDataAdapter
.GetConnection3(command, ADP.FillSchema);
455
return Fill(dataSet, 0, 0,
DbDataAdapter
.DefaultSourceTableName, selectCmd!, cmdBehavior);
619
IDbConnection activeConnection =
DbDataAdapter
.GetConnection3(command, ADP.Fill);
764
DataRowVersion version =
DbDataAdapter
.GetParameterSourceVersion(typeIndex, parameter);
844
return Update(dataSet,
DbDataAdapter
.DefaultSourceTableName);
909
tableMapping = new DataTableMapping(
DbDataAdapter
.DefaultSourceTableName, dataTable.TableName);
1200
IDbConnection connection =
DbDataAdapter
.GetConnection1(this);
1218
IDbConnection connection =
DbDataAdapter
.GetConnection4(dataCommand, statementType, isCommandFromRowUpdating);
1296
IDbConnection connection =
DbDataAdapter
.GetConnection1(this);
1742
private static IDbConnection GetConnection1(
DbDataAdapter
adapter)
System\Data\Common\DbProviderFactory.cs (2)
26
using (
DbDataAdapter
? adapter = CreateDataAdapter())
64
public virtual
DbDataAdapter
? CreateDataAdapter() => null;
System.Data.Odbc (2)
System\Data\Odbc\OdbcCommandBuilder.cs (1)
291
protected override void SetRowUpdatingHandler(
DbDataAdapter
adapter)
System\Data\Odbc\OdbcFactory.cs (1)
36
public override
DbDataAdapter
CreateDataAdapter()
System.Data.OleDb (2)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (2)
79
protected override void SetRowUpdatingHandler(System.Data.Common.
DbDataAdapter
adapter) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
276
public override System.Data.Common.
DbDataAdapter
CreateDataAdapter() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }