You are on page 1of 1

Drivers

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) foreach $driver (keys
%attrib);

You might also like