sp_prepexecrpc (Transact-SQL)
Prepares and executes a parameterized stored procedure call that has been specified using an RPC identifier. sp_prepexecrpc is invoked by ID = 14 in a tabular data stream (TDS) packet.
Syntax
sp_prepexecrpc handle, OUTPUT RPCCall [ , bound_param ][ ,...n ]]
Arguments
handle
Is the SQL Server-generated prepared handle identifier. handle is a required parameter with an int return value.RPCCall
Defines the SP call using ODBC canonical syntax. RPCCall is a required parameter that calls for an ntext string input value. See the Example section later in this topic for additional information.bound_param
Signifies the optional use of additional parameters. bound_param calls for an input value of any data type to designate the additional parameters in use.