6 writes to _handleState
System.Data.Odbc (6)
System\Data\Odbc\OdbcConnectionHandle.cs (6)
69_handleState = HandleState.Transacted; 133_handleState = HandleState.TransactionInProgress; 172_handleState = HandleState.Transacted; 179_handleState = HandleState.Connected; 201_handleState = HandleState.Connected; 219_handleState = HandleState.Allocated;
7 references to _handleState
System.Data.Odbc (7)
System\Data\Odbc\OdbcConnectionHandle.cs (7)
58Debug.Assert(HandleState.Connected <= _handleState, "AutoCommitOff while in wrong state?"); 167if (HandleState.TransactionInProgress == _handleState) 176if (HandleState.Transacted == _handleState) 189Debug.Assert(HandleState.Allocated == _handleState, "SQLDriverConnect while in wrong state?"); 216if ((HandleState.Connected == _handleState) || (HandleState.TransactionInProgress == _handleState)) 221Debug.Assert(HandleState.Allocated == _handleState, "not expected HandleState.Allocated");