English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Basic PHP Tutorial

Advanced PHP Tutorial

PHP & MySQL

PHP Reference Manual

Usage and examples of PHP odbc_columnprivileges() function

PHP ODBC Reference Manual

The odbc_columnprivileges() function lists the columns and associated permissions of the given table

Syntax

resource odbc_columnprivileges ( resource $connection_id , string $qualifier , string $owner , string $table_name , string $column_name )

Definition and usage

It contains information about the associated permissions of the list column and the given table.

Return value

It returns an ODBC result identifier, otherwise it returns false. The result identifier contains information about the column list and related permissions.

Parameter

Serial numberParameters and descriptions
1

connection_id

Connection ID information

2

qualifier

It contains information about the qualifier

3

owner

It contains information about the owner

4

table_name

It contains information about the table name

5

column_name

It contains information about the column_name parameter

PHP ODBC Reference Manual