Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dbix::class::carp(3) [osx man page]

DBIx::Class::Carp(3)					User Contributed Perl Documentation				      DBIx::Class::Carp(3)

NAME
DBIx::Class::Carp - Provides advanced Carp::Clan-like warning functions for DBIx::Class internals DESCRIPTION
Documentation is lacking on purpose - this an experiment not yet fit for mass consumption. If you use this do not count on any kind of stability, in fact don't even count on this module's continuing existence (it has been noindexed for a reason). In addition to the classic interface: use DBIx::Class::Carp '^DBIx::Class' this module also supports a class-data based way to specify the exclusion regex. A message is only carped from a callsite that matches neither the closed over string, nor the value of "_skip_namespace_frames" as declared on any callframe already skipped due to the same mechanism. This is to ensure that intermediate callsites can declare their own additional skip-namespaces. CLASS ATTRIBUTES
_skip_namespace_frames A classdata attribute holding the stringified regex matching callsites that should be skipped by the carp methods below. An empty string "q{}" is treated like no setting/"undef" (the distinction is necessary due to semantics of the class data accessors provided by Class::Accessor::Grouped) EXPORTED FUNCTIONS
This module export the following 3 functions. Only warning related "carp*" is being handled here, for "croak"-ing you must use "throw_exception" in DBIx::Class::Schema or DBIx::Class::Exception. carp Carps message with the file/line of the first callsite not matching "_skip_namespace_frames" nor the closed-over arguments to "use DBIx::Class::Carp". carp_unique Like "carp" but warns once for every distinct callsite (subject to the same ruleset as "carp"). carp_once Like "carp" but warns only once for the life of the perl interpreter (regardless of callsite). perl v5.16.2 2012-08-16 DBIx::Class::Carp(3)

Check Out this Related Man Page

DBIx::Class::Manual::DocMap(3pm)			User Contributed Perl Documentation			  DBIx::Class::Manual::DocMap(3pm)

NAME
DBIx::Class::Manual::DocMap - What documentation do we have? Manuals DBIx::Class::Manual - User's Manual overview. DBIx::Class::Manual::FAQ - Frequently Asked Questions, gathered from IRC and the mailing list. DBIx::Class::Manual::Intro - Introduction to setting up and using DBIx::Class. DBIx::Class::Manual::Example - Full example Schema. DBIx::Class::Manual::Cookbook - Various short recipes on how to do things. DBIx::Class::Manual::Troubleshooting - What to do if things go wrong (diagnostics of known error messages). DBIx::Class::Manual::Component - How to write your own DBIx::Class components. DBIx::Class::Manual::Glossary - What do all those terms mean? Setting up DBIx::Class::Schema - Overall schemas, and connection container. DBIx::Class::ResultSource - Source/Table definition functions. DBIx::Class::Relationship - Simple relationships. DBIx::Class::Relationship::Base - Relationship details. DBIx::Class::PK::Auto - Magically retrieve auto-incrementing fields. DBIx::Class::Core - Set of standard components to load. DBIx::Class::InflateColumn - Making objects out of your columns. DBIx::Class::InflateColumn::DateTime - Magically turn your datetime or timestamp columns into DateTime objects. DBIx::Class::PK - Dealing with primary keys. DBIx::Class::ResultSourceProxy::Table - Turns the resultsource into a table. DBIx::Class::AccessorGroup - Accessor grouping. Retrieving and creating data DBIx::Class::ResultSet - Selecting and manipulating sets. DBIx::Class::ResultSetColumn - Perform operations on entire columns of a ResultSet. DBIx::Class::Row - Dealing with actual data. DBIx::Class::Storage - Basic Storage stuff. DBIx::Class::Storage::DBI - Storage using DBI and SQL::Abstract. perl v5.14.2 2010-06-03 DBIx::Class::Manual::DocMap(3pm)
Man Page