From: Mike Wisener <xmikew@32ths.com> Date: Tue, 30 Sep 2014 03:58:59 +0000 (-0400) Subject: Clarify load_namespaces call -- more than one call can be made X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f7d6f0e11ffa9b0e8cce55a20de2edce00ca1786;p=dbsrgits%2FDBIx-Class.git Clarify load_namespaces call -- more than one call can be made --- diff --git a/AUTHORS b/AUTHORS index 83d36d7..509f54d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -211,6 +211,7 @@ willert: Sebastian Willert <willert@cpan.org> wintermute: Toby Corkindale <tjc@cpan.org> wreis: Wallace Reis <wreis@cpan.org> xenoterracide: Caleb Cushing <xenoterracide@gmail.com> +xmikew: Mike Wisener <xmikew@32ths.com> yrlnry: Mark Jason Dominus <mjd@plover.com> zamolxes: Bogdan Lucaciu <bogdan@wiz.ro> Zefram: Andrew Main <zefram@fysh.org> diff --git a/Changes b/Changes index 19841b8..a9db781 100644 --- a/Changes +++ b/Changes @@ -28,7 +28,7 @@ Revision history for DBIx::Class * Misc - Remove warning about potential side effects of RT#79576 (scheduled) - - Various doc improvements (GH#70, GH#71, GH#72) + - Various doc improvements (GH#62, GH#70, GH#71, GH#72) - Skip tests in a way more intelligent and speedy manner when optional dependencies are missing - Make the Optional::Dependencies error messages cpanm-friendly diff --git a/lib/DBIx/Class/Manual/FAQ.pod b/lib/DBIx/Class/Manual/FAQ.pod index 4a78e24..92ac0f7 100644 --- a/lib/DBIx/Class/Manual/FAQ.pod +++ b/lib/DBIx/Class/Manual/FAQ.pod @@ -82,8 +82,8 @@ L<table|DBIx::Class::ResultSourceProxy::Table/table> call. Eg: __PACKAGE__->table('mydb.mytablename'); -And load all the Result classes for both / all databases using one -L<DBIx::Class::Schema/load_namespaces> call. +And load all the Result classes for both / all databases by calling +L<DBIx::Class::Schema/load_namespaces>. =item .. use DBIx::Class across PostgreSQL/DB2/Oracle schemas?