INF: No Results From SQLDescribeParam or SQLProcedureColumnsLast reviewed: May 5, 1997Article ID: Q155446 |
The information in this article applies to:
SUMMARYThe Microsoft SQL Server ODBC driver may sometimes return an empty result set from calls to SQLDescribeParam() or SQLProcedureColumns().
MORE INFORMATIONIf an application calls SQLDescribeParam() or SQLProcedureColumns() while it references a procedure which is not in the current database, these functions return an empty result set to the application. SQLProcedureColumns() returns SQL_SUCCESS and SQLDescribeParam() returns SQL_NO_DATA_FOUND. SQLProcedureColumns() returns the correct information if the szProcQualifier and szProcOwner parameters are correctly supplied with the database and owner name for the stored procedure. The application can also get the column information if it first switches the current context to the database the procedure is in by either:
The most common use for these API functions to receive information about a procedure in another database is when executing the SQL Server system stored procedures (such as sp_who, sp_help, etc.). These procedures are in the master database, while most applications are executing in the context of a user database. To receive information about the parameters and columns of the system stored procedures, either fully qualify the procedure name, or use the methods mentioned above to switch the application’s current database to master. The application can switch its context back to the user database after it has the column information on the system stored procedure.
|
Additional query words:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |