Returns a description of the stored parameters of the procedures of the given catalog
1 connection.metadata.getProcedureColumns
<connection.metadata.getProcedureColumns
catalog='catalog'
schemaPattern='schemaPattern'
procPattern='procPattern'
colPattern='colPattern'
/>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Acatalog | string | Catalog. | |||
AschemaPattern | string | Pattern of name of schema. | |||
AprocPattern | string | Pattern of name of procedure. | |||
AcolPattern | string | Pattern of name of column. |
Returns | |
---|---|
Type | Description |
Vtable |
Example
Copy
<xsql-script name='connection_metadata.getProcedureColumns_sample1'> <body> <println> <connection.metadata.getProcedureColumns> <null /> <null /> <string>captpool_cimppool</string> <null /> </connection.metadata.getProcedureColumns> </println> </body> </xsql-script>
Copy
+--------------+---------------+-----------------+-----------+-----------+---------+---------+---------+------+-----+-----+--------+---------------------------------------------------------+---+ |procedure_cat |procedure_schem|procedure_name |column_name|column_type|data_type|type_name|precision|length|scale|radix|nullable|remarks |ser| +--------------+---------------+-----------------+-----------+-----------+---------+---------+---------+------+-----+-----+--------+---------------------------------------------------------+---+ |demo_formacion|informix |captpool_cimppool| | 1| 4|integer | | | | | 2|create procedure informix.captpool_cimppool(integer,char)| 1| |demo_formacion|informix |captpool_cimppool| | 1| 1|char | | | | | 2|create procedure informix.captpool_cimppool(integer,char)| 2| +--------------+---------------+-----------------+-----------+-----------+---------+---------+---------+------+-----+-----+--------+---------------------------------------------------------+---+