0% found this document useful (0 votes)
31 views1 page

Driver: $arrayname ('Driver') Attrib1 Attrib2 Attrib3 ... Example

This document describes how to use the Drivers method to return an associative array of ODBC drivers and their attributes, with the driver name as the key and attributes as a semicolon-delimited string value. For example, it can be used to print the attributes of a specific driver to a log.

Uploaded by

Amutha Arun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views1 page

Driver: $arrayname ('Driver') Attrib1 Attrib2 Attrib3 ... Example

This document describes how to use the Drivers method to return an associative array of ODBC drivers and their attributes, with the driver name as the key and attributes as a semicolon-delimited string value. For example, it can be used to print the attributes of a specific driver to a log.

Uploaded by

Amutha Arun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Driver

Returns an associative array of Drivers and their attributes in the form of:

$ArrayName{'DRIVER'} = Attrib1;Attrib2;Attrib3;...
where DRIVER is the ODBC Driver Name and AttribX are the driver-defined attributes.

Example:
%attrib = $db->Drivers;
print LOG qq($driver: $attrib{$driver}\n)

You might also like