我如何获取 AnjLab SqlProfiler 中发送的参数

How can i get the parameters sent in AnjLab SqlProfiler

当我通过站点对数据库进行某种查询时,SQL Server Profiler 向我抛出此 TextData:

exec sp_executesql N' SELECT (...)  FROM (...) IDExample = @IDExample ORDER BY (...) ',
N'@IDExample int', @IDExample = 5

当我尝试使用 AnjLab Sql Profiler(我用它工作起来更舒服)做同样的事情时,我得到了同样的结果,但没有参数:

exec sp_executesql N' SELECT (...)  FROM (...) IDExample = @IDExample ORDER BY (...) '

我可以设置某种配置来获取 AnjLab SQL Profiler 中的参数?

不,在不更改代码库的情况下,不可能在 AnjLab SQL Profiler 中获取参数。