The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "DBIx::Class::Schema"

DBIx::Class::Schema - composable schemas River stage three • 342 direct dependents • 452 total dependents

Creates database classes based on a schema. This is the recommended way to use DBIx::Class and allows you to use more than one concurrent connection with your classes. NB: If you're used to Class::DBI it's worth reading the "SYNOPSIS" carefully, as D...

RIBASUSHI/DBIx-Class-0.082843 - 17 May 2022 10:49:29 UTC - Search in distribution

DBIx::Class::Schema::Diff - Identify differences between two DBIx::Class schemas River stage one • 2 direct dependents • 2 total dependents

General-purpose schema differ for DBIx::Class to identify changes between two DBIC Schemas. Currently tracks added/deleted/changed events and deep diffing across 5 named types of source data: * columns * relationships * constraints * table_name * isa...

VANSTYN/DBIx-Class-Schema-Diff-1.13 - 20 Jan 2021 07:24:38 UTC - Search in distribution

Test::DBIx::Class::Schema - DBIx::Class schema sanity checking tests River stage one • 2 direct dependents • 3 total dependents

It's really useful to be able to test and confirm that DBIC classes have and support a known set of methods. Testing these one-by-one is more than tedious and likely to discourage you from writing the relevant test scripts. As a lazy person myself I ...

CHISEL/Test-DBIx-Class-Schema-1.0.12 - 12 Jun 2017 09:19:29 UTC - Search in distribution

DBIx::Class::Schema::Slave - DBIx::Class::Schema for slave (EXPERIMENTAL) River stage zero No dependents

DBIx::Class::Schema::Slave is DBIx::Class::Schema for slave. DBIx::Class::Schema::Slave creates "result_source" classes for slave automatically, and connects slave datasources as you like (or at rondom). You can retrieve rows from either master or sl...

TRAVAIL/DBIx-Class-Schema-Slave-0.02400 - 20 May 2008 14:35:22 UTC - Search in distribution

DBIx::Class::Schema::Config - Credential Management for DBIx::Class River stage one • 2 direct dependents • 4 total dependents

DBIx::Class::Schema::Config is a subclass of DBIx::Class::Schema that allows the loading of credentials & configuration from a file. The actual code itself would only need to know about the name used in the configuration file. This aims to make it si...

SYMKAT/DBIx-Class-Schema-Config-0.001014 - 14 Jul 2021 01:28:03 UTC - Search in distribution

DBIx::Class::Schema::Loader - Create a DBIx::Class::Schema based on a database River stage three • 34 direct dependents • 101 total dependents

DBIx::Class::Schema::Loader automates the definition of a DBIx::Class::Schema by scanning database table definitions and setting up the columns, primary keys, unique constraints and relationships. See dbicdump for the "dbicdump" utility. DBIx::Class:...

VEESH/DBIx-Class-Schema-Loader-0.07052 - 06 Jan 2024 20:54:24 UTC - Search in distribution

DBIx::Class::Smooth::Schema - Short intro River stage zero No dependents

DBIx::Class::Smooth::Schema adds method accessors for all resultsets. In short, instead of this: my $schema = MyApp::Schema->connect(...); my $result = $schema->resultset('Author'); You can do this: my $schema = MyApp::Schema->connect(...); my $resul...

CSSON/DBIx-Class-Smooth-0.0108 - 29 Nov 2020 19:45:40 UTC - Search in distribution

DBIx::Simple::Class::Schema - Create and use classes representing tables from a database River stage one • 1 direct dependent • 1 total dependent

DBIx::Simple::Class::Schema automates the creation of classes from database tables. You can use it when you want to prototype quickly your application. It is also very convenient as an initial generator and dumper of your classes representing your da...

BEROV/DBIx-Simple-Class-1.009 - 21 Mar 2015 10:33:59 UTC - Search in distribution

DBIx::Class::Schema::KiokuDB - Hybrid KiokuDB/DBIx::Class::Schema schema support. River stage one • 6 direct dependents • 8 total dependents

This class provides the schema definition support code required for integrating an arbitrary DBIx::Class::Schema with KiokuDB::Backend::DBI. REUSING AN EXISTING DBIx::Class SCHEMA The example in the Synopis assumes that you want to first set up a Kio...

DOY/KiokuDB-Backend-DBI-1.23 - 31 Mar 2014 20:06:52 UTC - Search in distribution

DBIx::Class::Schema::TxnEndHook - provide add_txn_end_hook method to your schema class River stage zero No dependents

DBIx::Class::Schema::TxnEndHook provide "add_txn_end_hook" method to your schema class....

COMMOJUN/DBIx-Class-Storage-TxnEndHook-0.02 - 04 Sep 2023 09:14:29 UTC - Search in distribution

DBIx::Class::Schema::PopulateMore - An enhanced populate method River stage two • 1 direct dependent • 30 total dependents

This is a DBIx::Class::Schema component that provides an enhanced version of the builtin method "populate" in DBIx::Class::Schema. What it does is make it easier when you are doing a first time setup and need to insert a bunch of rows, like the first...

JJNAPIORK/DBIx-Class-Schema-PopulateMore-0.19 - 09 Oct 2014 20:43:46 UTC - Search in distribution

DBIx::Class::Schema::ResultSetNames - Create resultset accessors from schema result class names River stage one • 2 direct dependents • 3 total dependents

DBIx::Class::Schema::ResultSetNames adds both singular and plural method accessors for all resultsets. So, instead of this: my $schema = MyApp::Schema->connect(...); my $result = $schema->resultset('Author')->search({...}); you may choose to this: my...

GEEKRUTH/DBIx-Class-Schema-ResultSetNames-1.0301 - 02 Jul 2022 18:00:59 UTC - Search in distribution

DBIx::Class::Schema::RestrictWithObject - Automatically restrict resultsets River stage one • 1 direct dependent • 1 total dependent

This DBIx::Class::Schema component can be used to restrict all resultsets through an appropriately-named method in a user-supplied object. This allows you to automatically prevent data from being accessed, or automatically predefine options and searc...

ARCANEZ/DBIx-Class-Schema-RestrictWithObject-0.0002 - 26 Jun 2013 19:58:15 UTC - Search in distribution

DBIx::Class::Schema::ResultSetAccessors - Short hand ResultSet Accessors River stage zero No dependents

Creates short hand accessor methods for each ResultSet. Accessor names are properly converted into lowercase and pluralized. E.g. LinerNote -> liner_notes Artist -> artists CD -> cds...

ROMANF/DBIx-Class-Schema-ResultSetAccessors-0.001005 - 24 Jun 2011 10:37:44 UTC - Search in distribution

Test::DBIx::Class::Example::Schema - A basic schema you can use for testing River stage two • 26 direct dependents • 29 total dependents

This Schema has two purposes. First, we need one in order to properly test this distribution. Secondly, we'd like to offer a useful and simple schema that component authors can use to test their code. This way you don't have to keep rolling your own ...

NEWELLC/Test-DBIx-Class-0.52 - 07 Dec 2016 16:33:32 UTC - Search in distribution

DBIx::Class::AuditAny::Role::Schema - Role to apply to tracked DBIx::Class::Schema objects River stage zero No dependents

This Role is for interfaces only. Its main job is to add the DBIx::Class::AuditAny::Role::Storage role to the DBIC storage object so the change tracking can occur....

VANSTYN/DBIx-Class-AuditAny-0.200200 - 20 Dec 2020 10:50:31 UTC - Search in distribution

DBIx::Class::Schema::Loader::Dynamic - Really Dynamic Schema Generation for DBIx::Class River stage one • 1 direct dependent • 1 total dependent

DBIx::Class::Schema::Loader::Dynamic is a faster and simpler driver for the dynamic schema generation feature of DBIx::Class::Schema::Loader. It will make Perl classes for each table spring into existence and it runs the declarative statements (such ...

FRANKC/DBIx-Class-Schema-Loader-Dynamic-1.05 - 19 Apr 2016 03:41:38 UTC - Search in distribution

DBIx::Class::Helper::Schema::DateTime - DateTime helper River stage two • 11 direct dependents • 16 total dependents

FREW/DBIx-Class-Helpers-2.036000 - 28 Mar 2020 21:18:26 UTC - Search in distribution
508 results (0.289 seconds)