The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "dist:DBIx-Class-Helpers parent"

DBIx::Class::Helper::Schema::Verifier::Parent - Verify that the Results and ResultSets have the correct base class River stage two • 10 direct dependents • 14 total dependents

"DBIx::Class::Helper::Schema::Verifier::Parent" verifies that all of your results and resultsets use the base class that you specify....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helpers - Simplify the common case stuff for DBIx::Class. River stage two • 10 direct dependents • 14 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet - All the ResultSet Helpers in one place River stage two • 10 direct dependents • 14 total dependents

This is just a simple Helper helper that includes all of the ResultSet Helpers in one convenient module. It does not include deprecated helpers. NOTE You probably want this applied to your entire schema. The most convenient way to do that is to make ...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::ToJSON - Remove the boilerplate from your TO_JSON functions River stage two • 10 direct dependents • 14 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::SubClass - Convenient subclassing with DBIx::Class River stage two • 10 direct dependents • 14 total dependents

This component is to allow simple subclassing of DBIx::Class Result classes....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Me - Define predefined searches more nicely River stage two • 10 direct dependents • 14 total dependents

This component allows slightly nicer predefined search definition. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema. It defines a single method that is shorter and (to most) clearer than "current_source_al...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::VirtualView - Clean up your SQL namespace (DEPRECATED) River stage two • 10 direct dependents • 14 total dependents

This component is will allow you to clean up your SQL namespace. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::OneRow - The first you always wanted River stage two • 10 direct dependents • 14 total dependents

This component codifies an alternate version of "first" in DBIx::Class::ResultSet. In practical use, "first" allows a user to do something like the following: my $rs = $schema->resultset('Foo')->search({ name => 'bar' }); my $first = $rs->first; my @...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::Random - Get random rows from a ResultSet River stage two • 10 direct dependents • 14 total dependents

This component allows convenient selection of random rows. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema. Currently this works by doing something akin to SELECT TOP($x) from $table ORDER BY RANDOM() Lot...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::StorageValues - Keep track of stored vs in-memory row values River stage two • 10 direct dependents • 14 total dependents

This component keeps track of the value for a given column in the database. If you change the column's value and do not call "update", the "storage_value" will be different; once "update" is called the "storage_value" will be set to the value of the ...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::SearchOr - Combine ResultSet searches with OR's River stage two • 10 direct dependents • 14 total dependents

I would argue that the most important feature of DBIx::Class is the fact that you can "chain" ResultSet searches. Unfortunately this can cause problems when you need to reuse multiple ResultSet methods as... well as or's. In the past I got around thi...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::OnColumnChange - Do things when the values of a column change River stage two • 10 direct dependents • 14 total dependents

This module codifies a pattern that I've used in a number of projects, namely that of doing something when a column changes it's value in the database. It leverages DBIx::Class::Helper::Row::StorageValues for passing in the $old_value, which do not h...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::NoColumns - Look ma, no columns! River stage two • 10 direct dependents • 14 total dependents

This component simply gives you a method to clear the set of columns to be selected. It's just handy sugar. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply this to your entire schema....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Schema::LintContents - suite of methods to find violated "constraints" River stage two • 10 direct dependents • 14 total dependents

Some people think that constraints make their databases slower. As silly as that is, I have been in a similar situation! I'm here to help you, dear developers! Basically this is a suite of methods that allow you to find violated "constraints." To be ...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::OnColumnMissing - Configurably handle access of missing columns River stage two • 10 direct dependents • 14 total dependents

This module is written to handle the odd condition where you have limited the columns retrieved from the database but accidentally access one of the ones not included. It is configurable by tweaking the "on_column_missing" return value....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::RelationshipDWIM - Type less for your relationships! River stage two • 10 direct dependents • 14 total dependents

This module prepends your "default_result_namespace" to related objects if they begin with "::". Simple but handy....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Schema::GenerateSource - Generate sources directly from your Schema River stage two • 10 direct dependents • 14 total dependents

This helper allows you to handily and correctly add new result sources to your schema based on existing result sources. Typically this would be done with something like: package MyApp::Schema::Result::MessegeQueue; use parent 'MyCo::Schema::Result::M...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::DateMethods1 - Work with dates in your RDBMS nicely River stage two • 10 direct dependents • 14 total dependents

See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema. This ResultSet component gives the user tools to do mostly portable date manipulation in the database. Before embarking on a cross database project, take a...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::ResultSet::RemoveColumns - Remove columns from a ResultSet River stage two • 10 direct dependents • 14 total dependents

This component allows convenient removal of columns from a select. Normally to do this you would do this by listing all of the columns except the ones you want to remove. This does that part for you. See "NOTE" in DBIx::Class::Helper::ResultSet for a...

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC

DBIx::Class::Helper::Row::ProxyResultSetMethod - Efficiently reuse ResultSet methods from results with fallback River stage two • 10 direct dependents • 14 total dependents

This module makes reusing resultset methods from a result trivially easy. You should be using it....

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC
23 results (0.034 seconds)