• PHP Video Tutorials

PHP - Function Special Columns



Syntax

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

Definition and Usage

It used to retrieve the special columns

Return Values

It returns odbc result identifiers on success or else false on failure

Parameters

Sr.No Parameters & Description
1

connection_id

It contains the information about connection identifiers

2

qualifier

it contains the information about qualifier

3

owner

it contains the information about the owner

4

nullable

It contains the information about null-able option

Examples

Try out following example

<?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
Advertisements