Search results for "module:DBIx::Class"
DBIx::Class - Extensible and flexible object <-> relational mapper.
This is an SQL to OO mapper with an object API inspired by Class::DBI (with a compatibility layer as a springboard for porting) and a resultset API that allows abstract encapsulation of database operations. It aims to make representing queries in you...
RIBASUSHI/DBIx-Class-0.082843 - 17 May 2022 10:49:29 UTC
DBIx::Class::PK - Primary Key class
This class contains methods for handling primary keys and methods depending on them....
RIBASUSHI/DBIx-Class-0.082843 - 17 May 2022 10:49:29 UTC
Tie::DBIx::Class - Tie a DBIx::Class ResultSet into a hash
This module ties a DBIx::Class::ResultSet into a simple hash but loads the referenced DBIx::Class::ResultSet only on request reducing database access. DBIx::Class puts a SQL row into a simple object and masks all SQL from you scripts, but it's strict...
SEWI/Tie-DBIx-Class-0.01 - 06 Feb 2010 21:57:15 UTC
DBIx::Class::Row - Basic row methods
This class is responsible for defining and doing basic operations on rows derived from DBIx::Class::ResultSource objects. Result objects are returned from DBIx::Class::ResultSets using the create, find, next and all methods, as well as invocations of...
RIBASUSHI/DBIx-Class-0.082843 - 17 May 2022 10:49:29 UTC
DBIx::Class::Core - Core set of DBIx::Class modules
This class just inherits from the various modules that make up the DBIx::Class core features. You almost certainly want these. The core modules currently are: DBIx::Class::InflateColumn DBIx::Class::Relationship (See also DBIx::Class::Relationship::B...
RIBASUSHI/DBIx-Class-0.082843 - 17 May 2022 10:49:29 UTC
Test::DBIx::Class - Easier test cases for your DBIx::Class applications
The goal of this distribution is to make it easier to write test cases for your DBIx::Class based applications. It does this in three ways. First, it trys to make it easy to deploy your Schema. This can be to your dedicated testing database, or a sim...
NEWELLC/Test-DBIx-Class-0.52 - 07 Dec 2016 16:33:32 UTC
DBIx::Class::Sims - The addition of simulating data to DBIx::Class
This is a DBIx::Class component that adds a few methods to your DBIx::Class::Schema object. These methods make it much easier to create data for testing purposes (though, obviously, it's not limited to just test data). Alternately, it can be used as ...
GTERMARS/DBIx-Class-Sims-0.500012 - 10 Sep 2020 20:56:23 UTC
DBIx::Class::Tree - Manipulate and anaylze tree structured data.
The tree modules provide the tools to represent, modify, and analyze trees of data with DBIx::Class....
ABRAXXA/DBIx-Class-Tree-0.03003 - 21 Jan 2011 09:31:42 UTC
Types::DBIx::Class - A Type::Library for DBIx::Class objects
This simply provides some Type::Tiny style types for often shared DBIx::Class objects. It is forked from, and still borrows heavily from MooseX::Types::DBIx::Class....
YARY/Types-DBIx-Class-1.000006 - 02 Jun 2015 13:44:31 UTC
DBIx::Class::Graph
This module allows to create and interact with a directed graph. It will take care of storing the information in a relational database. It uses Graph for calculations. This module extends the DBIx::Class::ResultSet. Some methods are added to the resu...
PERLER/DBIx-Class-Graph-1.05 - 27 Dec 2011 13:27:06 UTC
DBIx::Class::Stash - stash for DBIC
stash method for DBIC....
NEKOKAK/DBIx-Class-Stash-0.07 - 17 Aug 2009 15:15:39 UTC
DBIx::Class::PgLog - Postgres simple activity loging for DBIx::Class
Enable the PgLog schema component in your DBIx::Class::Schema class file: package My::Schema; use base qw/DBIx::Class::Schema/; __PACKAGE__->load_components(qw/Schema::PgLog/); Enable the PgLog component in your the individual DBIx::Class table class...
SHEEJU/DBIx-Class-PgLog-0.03 - 07 Oct 2014 09:21:20 UTC
DBIx::Class::Candy - Sugar for your favorite ORM, DBIx::Class
"DBIx::Class::Candy" is a simple sugar layer for definition of DBIx::Class results. Note that it may later be expanded to add sugar for more "DBIx::Class" related things. By default "DBIx::Class::Candy": * turns on strict and warnings * sets your par...
FREW/DBIx-Class-Candy-0.005003 - 14 Jul 2017 16:29:41 UTC
DBIx::Class::Admin - Administration object for schemas
RIBASUSHI/DBIx-Class-0.082843
-
17 May 2022 10:49:29 UTC
DBIx::Class::Smooth - Sugar for DBIx::Class
DBIx::Class::Smooth is a sugar layer for DBIx::Class, partially built on top of DBIx::Class::Candy and DBIx::Class::Helpers....
CSSON/DBIx-Class-Smooth-0.0108 - 29 Nov 2020 19:45:40 UTC
DBIx::Class::Events - Store Events for your DBIC Results
A framework for capturing events that happen to a Result in a table, "PRECONFIGURED EVENTS" are triggered automatically to track changes. This is useful for both being able to see the history of things in the database as well as logging when events h...
GSG/DBIx-Class-Events-0.9.2 - 11 Jun 2019 14:11:49 UTC
DBIx::Class::Report - Ad-Hoc reporting from DBIx::Class
NOTE: Experimental ALPHA code. Sometimes it's nice to be able to run ad-hoc SQL and get back a DBIx::Class resultset. We can use DBIx::Class::ResultSource::View, but that requires we hard-code our SQL ahead of time. "DBIx::Class::Report" allows you t...
OVID/DBIx-Class-Report-0.03 - 16 Mar 2016 10:45:43 UTC
DBIx::Class::Schema - composable schemas
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
DBIx::Class::Loader - Dynamic definition of DBIx::Class sub classes.
DBIx::Class::Loader automate the definition of DBIx::Class sub-classes by scanning table schemas and setting up columns and primary keys. Class names are defined by table names and the namespace option. The only required arguments are "namespace" and...
BLBLACK/DBIx-Class-Loader-0.21 - 27 Feb 2006 23:42:21 UTC
DBIx::Class::Cursor - Abstract object representing a query cursor on a resultset.
A Cursor represents a query cursor on a DBIx::Class::ResultSet object. It allows for traversing the result set with "next", retrieving all results with "all" and resetting the cursor with "reset". Usually, you would use the cursor methods built into ...
RIBASUSHI/DBIx-Class-0.082843 - 17 May 2022 10:49:29 UTC