|
odbc_proceduresGet the list of procedures stored in a specific data source Description
Odbc\Resultfalse odbc_procedures(
Odbc\Connection $odbc,stringnull $catalog = null,stringnull $schema = null,stringnull $procedure = null) Lists all procedures in the requested range. Parameters
Return Values
Returns an ODBC result object containing the information or The result set has the following columns:
The result set is ordered by Changelog
ExamplesExample #1 List stored Procedures of a Database The above example will output something similar to:
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
)
See Also
|