From: Nigel Metheringham Date: Sun, 26 Oct 2008 12:47:10 +0000 (+0000) Subject: Reworked Manual::Intro to use load_namecpaces X-Git-Tag: v0.08240~299^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=da7372ac69dbef985a717b955e1b00510e17835f;p=dbsrgits%2FDBIx-Class.git Reworked Manual::Intro to use load_namecpaces --- diff --git a/lib/DBIx/Class/Manual/Intro.pod b/lib/DBIx/Class/Manual/Intro.pod index 4bd95d5..ce9d3c4 100644 --- a/lib/DBIx/Class/Manual/Intro.pod +++ b/lib/DBIx/Class/Manual/Intro.pod @@ -86,30 +86,25 @@ L: use base qw/DBIx::Class::Schema/; In this class you load your result_source ("table", "model") classes, which we -will define later, using the load_classes() method. You can specify which -classes to load manually: +will define later, using the load_namespaces() method: - # load My::Schema::Album and My::Schema::Artist - __PACKAGE__->load_classes(qw/ Album Artist /); + # load My::Schema::Result::* and their resultset classes + __PACKAGE__->load_namespaces(); -Or load classes by namespace: +By default this loads all the Result (Row) classes in the +My::Schema::Result:: namespace, and also any resultset classes in the +My::Schema::ResultSet:: namespace (if missing, the resultsets are +defaulted to be DBIx::Class::ResultSet objects). You can change the +result and resultset namespaces by using options to the +L call. - # load My::Schema::Album, My::Schema::Artist and My::OtherSchema::LinerNotes - __PACKAGE__->load_classes( - { - 'My::Schema' => [qw/ Album Artist /], - 'My::OtherSchema' => [qw/ LinerNotes /] - } - ); - -Or let your schema class load all classes in its namespace automatically: - - # load My::Schema::* - __PACKAGE__->load_classes(); +It is also possible to do the same things manually by calling +C for the Row classes and defining in those classes any +required resultset classes. Next, create each of the classes you want to load as specified above: - package My::Schema::Album; + package My::Schema::Result::Album; use base qw/DBIx::Class/; Load any components required by each class with the load_components() method. @@ -164,7 +159,7 @@ See L for details. See L for more details of the possible column attributes. -Accessors are created for each column automatically, so My::Schema::Album will +Accessors are created for each column automatically, so My::Schema::Result::Album will have albumid() (or album(), when using the accessor), artist() and title() methods. @@ -181,7 +176,7 @@ to describe a column which contains an ID of another Table, or C to make a predefined accessor for fetching objects that contain this Table's foreign key: - __PACKAGE__->has_many('albums', 'My::Schema::Artist', 'album_id'); + __PACKAGE__->has_many('albums', 'My::Schema::Result::Artist', 'album_id'); See L for more information about the various types of available relationships and how you can design your own. @@ -248,7 +243,7 @@ The simplest way to get a record is by primary key: my $album = $schema->resultset('Album')->find(14); This will run a C