15 references to EXECTYPE
System.Data (15)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (15)
122
private
EXECTYPE
_execType =
EXECTYPE
.UNPREPARED; // by default, assume the user is not sharing a connection so the command has not been prepared
507
_execType =
EXECTYPE
.UNPREPARED;
940
Debug.Assert(_execType !=
EXECTYPE
.PREPARED, "Invalid attempt to Prepare already Prepared command!");
948
_execType =
EXECTYPE
.PREPAREPENDING;
977
_execType =
EXECTYPE
.PREPAREPENDING;
4144
|| (this.IsPrepared && _execType ==
EXECTYPE
.PREPAREPENDING))
4465
if(_execType ==
EXECTYPE
.PREPARED) {
4472
if (_execType ==
EXECTYPE
.PREPARED) {
4476
else if (_execType ==
EXECTYPE
.PREPAREPENDING) {
4480
_execType =
EXECTYPE
.PREPARED;
4487
Debug.Assert(_execType ==
EXECTYPE
.UNPREPARED, "Invalid execType!");
4711
_execType =
EXECTYPE
.PREPAREPENDING; // reset execution type to pending
4763
_execType =
EXECTYPE
.PREPAREPENDING; // reset execution type to pending
6010
get { return(_execType !=
EXECTYPE
.UNPREPARED);}