Release commit for 1.62
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / DBI.pm
index 86236ea..eb06117 100644 (file)
@@ -18,7 +18,9 @@ SQL::Translator::Parser::DBI - "parser" for DBI handles
 
   my $translator  =  SQL::Translator->new(
       parser      => 'DBI',
-      dbh         => $dbh,
+      parser_args => {
+          dbh => $dbh,
+      },
   );
 
 Or:
@@ -100,7 +102,7 @@ use strict;
 use warnings;
 use DBI;
 our @EXPORT;
-our $VERSION = '1.59';
+our $VERSION = '1.62';
 
 use constant DRIVERS => {
     mysql            => 'MySQL',
@@ -109,7 +111,6 @@ use constant DRIVERS => {
     pg               => 'PostgreSQL',
     sqlite           => 'SQLite',
     sybase           => 'Sybase',
-    pg               => 'PostgreSQL',
     db2              => 'DB2',
 };