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