I (allegedly) maintain DBD::PgPP, a pure-Perl DBD for PostgreSQL. While preparing a recent release, I discovered that the appropriate driver prefix hasn't been registered. (AFAICT, the original author never got round to doing it.)
Anyway, I'd like to register a prefix now. The attached patch (against 1.607) adds a "pgpp_" entry to $dbd_prefix_registry; please let me know if you need anything else. Thanks. -- Aaron Crane ** http://aaroncrane.co.uk/
diff -urN DBI-1.607.orig/DBI.pm DBI-1.607/DBI.pm --- DBI-1.607.orig/DBI.pm 2008-07-22 22:45:17.000000000 +0100 +++ DBI-1.607/DBI.pm 2009-02-24 14:41:40.000000000 +0000 @@ -338,6 +338,7 @@ odbc_ => { class => 'DBD::ODBC', }, ora_ => { class => 'DBD::Oracle', }, pg_ => { class => 'DBD::Pg', }, + pgpp_ => { class => 'DBD::PgPP', }, plb_ => { class => 'DBD::Plibdata', }, proxy_ => { class => 'DBD::Proxy', }, rdb_ => { class => 'DBD::RDB', },