(PHP 4, PHP 5, PHP 7, PHP 8)
odbc_procedures — Get the list of procedures stored in a specific data source
$odbc
,$catalog
= null
,$schema
= null
,$procedure
= null
Lists all procedures in the requested range.
odbc
O identificador da conexão ODBC. Consulte odbc_connect() para obter detalhes.
catalog
O catálogo ('qualifier' na linguagem ODBC 2).
schema
O esquema ('owner' na linguagem ODBC 2).
Este parâmetro aceita os seguintes padrões de pesquisa:
%
para corresponder a zero ou mais caracteres
e _
para corresponder a um único caractere.
procedure
The name.
Este parâmetro aceita os seguintes padrões de pesquisa:
%
para corresponder a zero ou mais caracteres
e _
para corresponder a um único caractere.
Returns an ODBC
result identifier containing the information ou false
em caso de falha.
The result set has the following columns:
PROCEDURE_CAT
PROCEDURE_SCHEM
PROCEDURE_NAME
NUM_INPUT_PARAMS
NUM_OUTPUT_PARAMS
NUM_RESULT_SETS
REMARKS
PROCEDURE_TYPE
The result set is ordered by PROCEDURE_CAT
,
PROCEDURE_SCHEMA
and PROCEDURE_NAME
.
Versão | Descrição |
---|---|
8.0.0 | Prior to this version, the function could only be called with either one or four arguments. |
Exemplo #1 List stored Procedures of a Database
<?php
$conn = odbc_connect($dsn, $user, $pass);
$procedures = odbc_procedures($conn, $catalog, $schema, '%');
while (($row = odbc_fetch_array($procedures))) {
print_r($row);
break; // further rows omitted for brevity
}
?>
O exemplo acima produzirá algo semelhante a:
Array ( [PROCEDURE_CAT] => TutorialDB [PROCEDURE_SCHEM] => dbo [PROCEDURE_NAME] => GetEmployeeSalesYTD;1 [NUM_INPUT_PARAMS] => -1 [NUM_OUTPUT_PARAMS] => -1 [NUM_RESULT_SETS] => -1 [REMARKS] => [PROCEDURE_TYPE] => 2 )