http://www.perlmonks.org?node_id=544407


in reply to Re: PERL and MS-SQL Server 2000
in thread PERL and MS-SQL Server 2000

This will have no effect whatsoever. The pattern match against the DSN is done case-insensitively. Here is the appropriate line from DBI.pm (version 1.50):

# extract dbi:driver prefix from $dsn into $1 $dsn =~ s/^dbi:(\w*?)(?:\((.*?)\))?://i or '' =~ /()/; # ensure $1 etc are empty if match fails