Passing parameters by Name rather than position




Hi all.

I am using a TAdoStoredProc to execute sps on a SQL Server 2000 DB. The DBAs tell me it would really help them if they could profile the sp calls in SQL Profiler and see the names of the parameters rather than just a comma delimited list of the parameter values e.g. instead of

exec GetNTUser -1, 'john.faris'

they want to see

exec GetNTUser @ContactDeptId=-1, @NTUserName='john.faris'


Is this possible at all?

TIA.

.