From: Matt S Trout Date: Sat, 28 Jan 2006 21:03:50 +0000 (+0000) Subject: Fixed Storage/DBI (tried to load deprecated ::Exception component) X-Git-Tag: v0.05005~77 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1f6927673007a20a42d89f55058bfeb38f2bb704;p=dbsrgits%2FDBIx-Class.git Fixed Storage/DBI (tried to load deprecated ::Exception component) --- diff --git a/MANIFEST b/MANIFEST index 6519ab6..1a2a9c7 100644 --- a/MANIFEST +++ b/MANIFEST @@ -73,6 +73,7 @@ lib/SQL/Translator/Parser/DBIx/Class.pm lib/SQL/Translator/Producer/DBIx/Class/File.pm Makefile.PL MANIFEST This list of files +META.yml README t/02pod.t t/03podcoverage.t.disabled @@ -80,6 +81,7 @@ t/04dont_break_c3.t t/18inserterror.t t/19quotes.t t/20setuperrors.t +t/30dbicplain.t t/basicrels/01core.t t/basicrels/04db.t t/basicrels/05multipk.t @@ -97,6 +99,7 @@ t/basicrels/15limit.t t/basicrels/16joins.t t/basicrels/17join_count.t t/basicrels/18self_referencial.t +t/basicrels/19uuid.t t/cdbi-sweet-t/08pager.t t/cdbi-t/01-columns.t t/cdbi-t/02-Film.t @@ -138,6 +141,8 @@ t/helperrels/20unique.t t/lib/DBICTest.pm t/lib/DBICTest/BasicRels.pm t/lib/DBICTest/HelperRels.pm +t/lib/DBICTest/Plain.pm +t/lib/DBICTest/Plain/Test.pm t/lib/DBICTest/Schema.pm t/lib/DBICTest/Schema/Artist.pm t/lib/DBICTest/Schema/ArtistUndirectedMap.pm @@ -155,6 +160,7 @@ t/lib/DBICTest/Schema/Tag.pm t/lib/DBICTest/Schema/Track.pm t/lib/DBICTest/Schema/TwoKeys.pm t/lib/DBICTest/Setup.pm +t/lib/sqlite.sql t/run/01core.tl t/run/04db.tl t/run/05multipk.tl @@ -192,4 +198,3 @@ t/testlib/MyStarLinkMCPK.pm t/testlib/Order.pm t/testlib/OtherFilm.pm t/testlib/PgBase.pm -META.yml diff --git a/README b/README index ef34f92..c2108e4 100644 --- a/README +++ b/README @@ -103,6 +103,12 @@ CONTRIBUTORS Zbigniew Lukasiak + Nigel Metheringham + + Jesper Krogh + + Brandon Black + LICENSE You may distribute this code under the same terms as Perl itself. diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 7cf09e6..68456c2 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -147,7 +147,7 @@ sub limit_dialect { use base qw/DBIx::Class/; -__PACKAGE__->load_components(qw/Exception AccessorGroup/); +__PACKAGE__->load_components(qw/AccessorGroup/); __PACKAGE__->mk_group_accessors('simple' => qw/connect_info _dbh _sql_maker debug debugfh cursor on_connect_do transaction_depth/);