2 implementations of IDbConnection
System.Data (2)
fx\src\data\System\Data\Common\DBConnection.cs (1)
18
public abstract class DbConnection : Component,
IDbConnection
{ // V1.2.3300
fx\src\data\System\Data\OleDb\OleDbConnection.cs (1)
35
public sealed partial class OleDbConnection : DbConnection, ICloneable,
IDbConnection
{
27 references to IDbConnection
System.Data (25)
fx\src\data\System\Data\Common\AdapterUtil.cs (1)
1639
static internal Exception ParallelTransactionsNotSupported(
IDbConnection
obj) {
fx\src\data\System\Data\Common\DBCommand.cs (1)
68
IDbConnection
IDbCommand.Connection {
fx\src\data\System\Data\Common\DBConnection.cs (3)
118
IDbTransaction
IDbConnection
.BeginTransaction() {
122
IDbTransaction
IDbConnection
.BeginTransaction(IsolationLevel isolationLevel) {
134
IDbCommand
IDbConnection
.CreateCommand() {
fx\src\data\System\Data\Common\DbDataAdapter.cs (17)
348
IDbConnection
activeConnection = DbDataAdapter.GetConnection3(this, command, ADP.FillSchema);
518
IDbConnection
activeConnection = DbDataAdapter.GetConnection3(this, command, ADP.Fill);
814
IDbConnection
[] connections = new
IDbConnection
[5]; // one for each statementtype
1012
IDbConnection
connection = DbDataAdapter.GetConnection1(this);
1027
IDbConnection
connection = DbDataAdapter.GetConnection4(this, dataCommand, statementType, isCommandFromRowUpdating);
1094
IDbConnection
connection = DbDataAdapter.GetConnection1(this);
1237
private ConnectionState UpdateConnectionOpen(
IDbConnection
connection, StatementType statementType,
IDbConnection
[] connections, ConnectionState[] connectionStates, bool useSelectConnectionState) {
1474
static private
IDbConnection
GetConnection1(DbDataAdapter adapter) {
1485
IDbConnection
connection = null;
1495
static private
IDbConnection
GetConnection3(DbDataAdapter adapter, IDbCommand command, string method) {
1498
IDbConnection
connection = command.Connection;
1505
static private
IDbConnection
GetConnection4(DbDataAdapter adapter, IDbCommand command, StatementType statementType, bool isCommandFromRowUpdating) {
1507
IDbConnection
connection = command.Connection;
1526
static private void QuietClose(
IDbConnection
connection, ConnectionState originalState) {
1540
static private void QuietOpen(
IDbConnection
connection, out ConnectionState originalState) {
fx\src\data\System\Data\Common\DbTransaction.cs (1)
24
IDbConnection
IDbTransaction.Connection {
fx\src\data\System\Data\IDbCommand.cs (1)
14
IDbConnection
Connection {
fx\src\data\System\Data\IDbTransaction.cs (1)
14
IDbConnection
Connection { // MDAC 66655
System.Data.Linq (2)
DataContext.cs (2)
98
public DataContext(
IDbConnection
connection) {
105
public DataContext(
IDbConnection
connection, MappingSource mapping) {