Under DBD::ODBC you can use GetInfo with SQL_DBMS_VER (18) but I guess
you would need to know which underlying DBMS that applied to:
SQL_DBMS_NAME (17).

my $dbms_name = $dbh->func(17, 'GetInfo');
my $dbms_version = $dbh->func(18, 'GetInfo');

print "$dbms_name: $dbms_version\n";

--
  Simon Oliver

Reply via email to