INF: Function dbretname() Returns NULLLast reviewed: April 29, 1997Article ID: Q110325 |
The information in this article applies to:
- Microsoft SQL Server Programmer's Toolkit, version 4.2
SUMMARYFunction dbretname() will not return NULL for a stored procedure parameter name if the parameter name is not specified in a previous call to dbrpcparam() or in the SQL EXEC statement.
MORE INFORMATIONFor example, executing the statement,
declare @var int exec TESTPROC @PARAM1 = @var OUTwill result in dbretname( dbproc, 1 ) returning the value "@PARAM1". While executing the statement,
declare @var int exec TESTPROC @var OUTwill result in dbretname( dbproc, 1 ) returning NULL.
|
Additional query words: dblib db_library DB-Library rpc remote
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |