Skip Menu |

This queue is for tickets about the Catalyst-Model-DBIC-Schema CPAN distribution.

Report information
The Basics
Id: 51007
Status: resolved
Priority: 0/
Queue: Catalyst-Model-DBIC-Schema

People
Owner: Nobody in particular
Requestors: david.schmidt [...] fm5.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: minor documentation error
Date: Sat, 31 Oct 2009 18:47:55 +0100
To: bug-Catalyst-Model-DBIC-Schema [...] rt.cpan.org
From: David Schmidt <david.schmidt [...] fm5.at>
Hi, there is a missing semicolon right after "use base qw/DBIx::Class/" Synopsis, Heading 2. Create some classes ... I'll put 3 stars (***) where the error is david SYNOPSIS ^ Manual creation of a DBIx::Class::Schema and a Catalyst::Model::DBIC::Schema: 1. Create the DBIx:Class schema in MyApp/Schema/FilmDB.pm: package MyApp::Schema::FilmDB; use base qw/DBIx::Class::Schema/; __PACKAGE__->load_classes(qw/Actor Role/); 2. Create some classes for the tables in the database, for example an Actor in MyApp/Schema/FilmDB/Actor.pm: package MyApp::Schema::FilmDB::Actor; use base qw/DBIx::Class/*** __PACKAGE__->load_components(qw/Core/); __PACKAGE__->table('actor'); ... -- David Schmidt | http://www.fm5.at
POD has been rewritten in 0.32, thank you for the report.