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