Show
Ignore:
Timestamp:
05/03/06 23:59:23 (4 years ago)
Author:
sky
Message:

r11@crucially-3 (orig r928): btrott | 2005-06-23 18:10:23 -0700
Remove the lc, because it breaks Pg

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/Data/ObjectDriver/Driver/DBI.pm

    r7 r8  
    2121    } 
    2222    ## Rebless the driver into the DSN-specific subclass (e.g. "mysql"). 
    23     my($type) = lc($driver->dsn) =~ /^dbi:(\w*)/; 
     23    my($type) = $driver->dsn =~ /^dbi:(\w*)/; 
    2424    my $class = ref($driver) . '::' . $type; 
    2525    eval "use $class";