9 references to TdsExecuteSQLBatch
System.Data (9)
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (2)
508
Task executeTask = _parser.
TdsExecuteSQLBatch
(TDSCommand, this.BulkCopyTimeout, null, _stateObj, sync: !_isAsyncBulkCopy, callerHasConnectionLock: true);
753
Task executeTask = _parser.
TdsExecuteSQLBatch
(TDSCommand, this.BulkCopyTimeout, null, _stateObj, sync: !_isAsyncBulkCopy, callerHasConnectionLock: true);
fx\src\data\System\Data\SqlClient\SqlCommand.cs (3)
3110
Task executeTask = _stateObj.Parser.
TdsExecuteSQLBatch
(this.CommandText, timeout, this.Notification, _stateObj, sync: true);
4455
writeTask = _stateObj.Parser.
TdsExecuteSQLBatch
(text, timeout, this.Notification, _stateObj, sync: !asyncWrite);
4520
Task executeTask = _stateObj.Parser.
TdsExecuteSQLBatch
(optionSettings, timeout, this.Notification, _stateObj, sync: true);
fx\src\data\System\Data\SqlClient\SqlDataReader.cs (1)
3687
Task executeTask = parser.
TdsExecuteSQLBatch
(_resetOptionsString, (_command != null) ? _command.CommandTimeout : 0, null, stateObj, sync: true);
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (3)
671
Threading.Tasks.Task executeTask = _parser.
TdsExecuteSQLBatch
("use " + database, ConnectionOptions.ConnectTimeout, null, _parser._physicalStateObj, sync: true);
888
Threading.Tasks.Task executeTask = _parser.
TdsExecuteSQLBatch
("sp_reset_connection", 30, null, _parser._physicalStateObj, sync: true);
1032
Threading.Tasks.Task executeTask = _parser.
TdsExecuteSQLBatch
(sqlBatch.ToString(), ConnectionOptions.ConnectTimeout, null, _parser._physicalStateObj, sync: true);