=item default_value
-Set this to the default value which will be inserted into a column
-by the database. Can contain either a value or a function. This is
+Set this to the default value which will be inserted into this column
+by the database. Can contain either values or functions. This is
- currently not used by DBIx::Class.
+ currently not used by DBIx::Class.
=item sequence
the schema's namespace. Otherwise, this method loads the classes you specify
(using L<use>), and registers them (using L</"register_class">).
-It is possible to comment out classes with a leading C<#>, but note that perl
-will think it's a mistake (trying to use a comment in a qw list), so you'll
-need to add C<no warnings 'qw';> before your load_classes call.
+It is possible to comment out classes with a leading '#', but note that perl
+will think it's a mistake (trying to use a comment in a qw list) so you'll
+need to add "no warnings 'qw';" before your load_classes call.
-Example:
+e.g.,
My::Schema->load_classes(); # loads My::Schema::CD, My::Schema::Artist,
- # etc. (anything under the My::Schema namespace)
+ # etc. (anything under the My::Schema namespace)
# loads My::Schema::CD, My::Schema::Artist, Other::Namespace::Producer but
# not Other::Namespace::LinerNotes nor My::Schema::Track
=head2 throw_exception
- =over 4
+ =over 4
-=item Arguments: $message
+=item Arguments: ($message)
=back