ODBC Функции
PHP Manual

odbc_procedurecolumns

(PHP 4, PHP 5)

odbc_procedurecolumnsRetrieve information about parameters to procedures

Описание

resource odbc_procedurecolumns ( resource $connection_id )
resource odbc_procedurecolumns ( resource $connection_id , string $qualifier , string $owner , string $proc , string $column )

Retrieve information about parameters to procedures.

Параметри

connection_id

Идентификаторът на връзка от тип ODBC, вж. odbc_connect() за подробности.

qualifier

The qualifier.

owner

The owner. Този параметър приема следните шаблони за търсене: "%" за съвпадение с един или повече знаци, "_" за зъвпадение с точно един знак.

proc

The proc. Този параметър приема следните шаблони за търсене: "%" за съвпадение с един или повече знаци, "_" за зъвпадение с точно един знак.

column

The column. Този параметър приема следните шаблони за търсене: "%" за съвпадение с един или повече знаци, "_" за зъвпадение с точно един знак.

Връщани стойности

Returns the list of input and output parameters, as well as the columns that make up the result set for the specified procedures. Returns an ODBC result identifier or FALSE on failure.

The result set has the following columns:

The result set is ordered by PROCEDURE_QUALIFIER, PROCEDURE_OWNER, PROCEDURE_NAME and COLUMN_TYPE.


ODBC Функции
PHP Manual