PHP - 函式特殊列



語法

resource odbc_specialcolumns ( resource $connection_id , int $type , 
   string $qualifier , string $owner , string $table , int $scope , int $nullable )

定義和用法

它用於檢索特殊列

返回值

成功時返回 odbc 結果識別符號,否則返回 false

引數

序號 引數和描述
1

connection_id

包含連線識別符號的資訊

2

qualifier

包含限定符的資訊

3

owner

包含所有者資訊

4

nullable

包含關於可為空選項的資訊

示例

嘗試以下示例

<?php
   $input_ID = odbc_connect("DSN","user_id","pass_id");
   $result = odbc_specialcolumns($input_ID,0,"Northwind","dbo","Employees",0,0);
   
   odbc_result_all($result);
 ?>
php_function_reference.htm
廣告