Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2304,13 +2304,6 @@ private static void ChangePassword(string connectionString, SqlConnectionString
SqlConnectionFactory.SingletonInstance.ClearPool(key);
}

//
// SQL DEBUGGING SUPPORT
//

// this only happens once per connection
// SxS: using named file mapping APIs

internal Task<T> RegisterForConnectionCloseNotification<T>(Task<T> outerTask, object value, int tag)
{
// Connection exists, schedule removal, will be added to ref collection after calling ValidateAndReconnect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@
</ItemGroup>
<!-- Contains common items shared between NetFx and NetCore -->
<ItemGroup>
<Compile Include="$(CommonSourceRoot)Interop\Windows\AdvApi32\AdvApi32.netfx.cs">
<Link>Interop\AdvApi32\AdvApi32.netfx.cs</Link>
</Compile>
<Compile Include="$(CommonSourceRoot)Interop\Windows\Kernel32\FileTypes.cs">
<Link>Interop\Kernel32\FileTypes.cs</Link>
</Compile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5620,9 +5620,6 @@ private SqlDataReader RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavi
optionSettings = GetResetOptionsString(cmdBehavior);
}

// turn debugging on
_activeConnection.CheckSQLDebug();

// execute sp
Debug.Assert(_rpcArrayOf1[0] == rpc);
writeTask = _stateObj.Parser.TdsExecuteRPC(this, _rpcArrayOf1, timeout, inSchema, this.Notification, _stateObj, CommandType.StoredProcedure == CommandType, sync: !asyncWrite);
Expand Down
Loading
Loading