getProcedureColumns( catalog, schemaPattern, procedureNamePattern, columnNamePattern ) |
Gets a description of a catalog's stored procedure parameters and result columns. Only descriptions matching specified schema, procedure and parameter name criteria are returned. They are ordered by procedure schema and procedure name. Within this, the return value, if any, is first. Next are the parameter descriptions in call order. The column descriptions follow in column number order. Each row in the result set is a parameter description or column description with the following fields:
getProcedureColumns( string catalog, string schemaPattern, string procedureNamePattern, columnNamePattern ) Parameters
If catalog is "" (the empty string), only procedures without a catalog are returned. If catalog is the null value, catalog names are not part of the selection criteria. If schemaPattern is "" (the empty string), only procedures without a schema are returned. NotesSome databases may not return the column descriptions for a procedure. Additional columns beyond REMARKS can be defined by the database. |