0% found this document useful (0 votes)
5 views

Methods

This document describes a method to retrieve catalog information from an ODBC object. The method returns a 4-element array containing the qualifier, owner, name, and type of catalog entries matching the given parameters. For example, it can return information on all tables by specifying a wildcard for the name and setting the type to 'TABLE'.

Uploaded by

Amutha Arun
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Methods

This document describes a method to retrieve catalog information from an ODBC object. The method returns a 4-element array containing the qualifier, owner, name, and type of catalog entries matching the given parameters. For example, it can return information on all tables by specifying a wildcard for the name and setting the type to 'TABLE'.

Uploaded by

Amutha Arun
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Methods

Catalog
qualifier, owner, name, type

Retrieves the catalog from the current ODBC object. Returns a four-element array (Qualifier, Owner, Name,
Type). Note:All fieldnames are uppercase!

Example:
($qualifier, $owner, $name, $type) = $db->Catalog("", "", "%",
"'TABLE'");

You might also like