3 writes to commandBehavior
System.Data.OleDb (3)
OleDbCommand.cs (3)
549this.commandBehavior = CommandBehavior.Default; 964this.commandBehavior = behavior; 1139this.commandBehavior = behavior;
7 references to commandBehavior
System.Data.OleDb (7)
OleDbCommand.cs (7)
665dataReader = new OleDbDataReader(_connection!, this, 0, this.commandBehavior); 794if (0 != (CommandBehavior.SchemaOnly & this.commandBehavior)) 834if ((0 == (CommandBehavior.SingleResult & this.commandBehavior)) && _connection!.SupportMultipleResults()) 838else if (0 == (CommandBehavior.SingleRow & this.commandBehavior) || !_executeQuery) 859Debug.Assert(0 == (CommandBehavior.SingleRow & this.commandBehavior), "SingleRow implies SingleResult"); 1134if ((0 != (CommandBehavior.KeyInfo & (this.commandBehavior ^ behavior))) || (_lastChangeID != changeid)) 1322bool keyInfo = (0 != (CommandBehavior.KeyInfo & this.commandBehavior));