3 writes to commandBehavior
System.Data (3)
fx\src\data\System\Data\OleDb\OleDbCommand.cs (3)
504this.commandBehavior = CommandBehavior.Default; 890this.commandBehavior = behavior; 1053this.commandBehavior = behavior;
7 references to commandBehavior
System.Data (7)
fx\src\data\System\Data\OleDb\OleDbCommand.cs (7)
615dataReader = new OleDbDataReader(_connection, this, 0, this.commandBehavior); 719if (0 != (CommandBehavior.SchemaOnly & this.commandBehavior)) { 755if ((0 == (CommandBehavior.SingleResult & this.commandBehavior)) && _connection.SupportMultipleResults()) { 758else if (0 == (CommandBehavior.SingleRow & this.commandBehavior) || !_executeQuery) { 774Debug.Assert(0 == (CommandBehavior.SingleRow & this.commandBehavior), "SingleRow implies SingleResult"); 1049if ((0 != (CommandBehavior.KeyInfo & (this.commandBehavior ^ behavior))) || (_lastChangeID != changeid)) { 1224bool keyInfo = (0 != (CommandBehavior.KeyInfo & this.commandBehavior));