Getting the ODBC Drivers : ODBC « Win32 « Perl






Getting the ODBC Drivers

   


 use Win32::ODBC;
 %drivers = Win32::ODBC::Drivers();
 local $" = ", ";
 foreach $driver (sort keys %drivers){
    @attributes = split (/;/,$drivers{$driver});
    print "Driver = $driver\n";
    print "@attributes\n\n";
 }

   
    
    
  








Related examples in the same category

1.Creating a Data Source Name (DSN)
2.Creating a Database Table