- , ( ) , , . (), . , ( TSQL), , , ; . , oCmd.Parameters, - , , , .
, .
Re pass-by-name pass-by-position, exec TSQL. :
exec MyProc 'abc', 123
exec MyProc @foo='abc', @bar=123
- ; 'abc' MyProc, 123 MyProc. , .
- ; 'abc' MyProc, @foo, 123 MyProc, @bar. , .
, :
exec sp_StoredProcedure @Param1, @Param2, @Param3
:
exec sp_StoredProcedure @Param1=@Param1, @Param2=@Param2, @Param3=@Param3
.