English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The odbc_procedurecolumns() function retrieves information about the parameters of the process
resource odbc_procedurecolumns ( resource $connection_id )
Retrieve information about the parameters of the process.
It returns an identifier, otherwise it returns false
Number | Parameters and Description |
---|---|
1 | connection_id ODBC Connection Identifier |
2 | qualifier Qualifier |
<?php $db = odbc_connect("DSN", "user_id", "pass_id"); $result = odbc_procedurecolumns($db, "Northwind", "dbo", "Employee Sales By Country", "%"); odbc_result_all($result); ?>