Hi Streen, Check the available drivers and data_sources in your system using following code.
use strict; use DBI; my @drivers = DBI->available_drivers(); $" = "\n"; print "@drivers"; foreach my $driver ( @drivers ) { print "Driver: $driver\n"; if ($driver !~ /prox/i) { my @dataSources = DBI->data_sources( $driver ); foreach my $dataSource ( @dataSources ) { print "\tData Source is $dataSource\n"; } print "\n"; } }
Regards,
Velusamy R.
In reply to Re: Trying to connect to a MsSql Database
by Samy_rio
in thread Trying to connect to a MsSql Database
by Streen
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |