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
广告