odbc_procedures

(PHP 4, PHP 5)

odbc_proceduresGet the list of procedures stored in a specific data source

說明

resource odbc_procedures ( resource $connection_id )
resource odbc_procedures ( resource $connection_id , string $qualifier , string $owner , string $name )

Lists all procedures in the requested range.

參數

connection_id

ODBC 連線標識符,詳見 odbc_connect()

qualifier

The qualifier.

owner

The owner. 此參數接受下列查詢模式:"%" 來匹配零到多個字元,"_" 來匹配單個字元。

name

The name. 此參數接受下列查詢模式:"%" 來匹配零到多個字元,"_" 來匹配單個字元。

回傳值

Returns an ODBC result identifier containing the information 或者在失敗時回傳 FALSE.

The result set has the following columns:

  • PROCEDURE_QUALIFIER
  • PROCEDURE_OWNER
  • PROCEDURE_NAME
  • NUM_INPUT_PARAMS
  • NUM_OUTPUT_PARAMS
  • NUM_RESULT_SETS
  • REMARKS
  • PROCEDURE_TYPE

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top