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