Search results for "DBIx::Class"
DBIx::Class::FrozenColumns - Store virtual columns inside another column.
This module allows you to store multiple columns in one. This is useful when you want to store dynamic number of columns in database or you just don't know what columns will be stored there. Or when you can't (or don't want) to alter your tables in d...
SYBER/DBIx-Class-FrozenColumns-1 - 28 Jan 2011 12:20:31 UTC - Search in distribution
DBIx::Class::QueryLog::Tee - Log to multiple QueryLogs at a time
Sometimes you want to see what queries you are running without having to look at database logs or the console that your app is running on (if it even is running on a console.) But what if you want to add tooling to, eg, count queries per web request,...
FREW/DBIx-Class-QueryLog-Tee-0.001001 - 29 Aug 2016 04:48:52 UTC - Search in distribution
DBIx::Class::QueryProfiler - DBIx::Class profiler
Profiler for DBIx::Class. Also it provides more usable output or queries....
GUGU/DBIx-Class-QueryProfiler-0.05 - 03 Aug 2011 08:06:34 UTC - Search in distribution
DBIx::Class::RandomColumns - Implicit Random Columns
This DBIx::Class component makes columns implicitly create random values. The main reason why this module exists is to generate unpredictable primary keys to add some additional security to web applications. Most forms of char and integer field types...
GRAF/DBIx-Class-RandomColumns-0.005001 - 22 Oct 2012 20:02:27 UTC - Search in distribution
DBIx::Class::SingletonRows - make database rows returned by DBIx::Class into singletons
When you do this with DBIx::Class: my $row = $schema->... my $row2 = update_and_return(); sub update_and_return { my $row = $schema->... $row->somefield("HLAGH"); $row->update(); return $row; } then even if both $row and $row2 have the same row_id, t...
DCANTRELL/DBIx-Class-SingletonRows-0.11 - 26 Jun 2008 17:33:22 UTC - Search in distribution
DBIx::Class::UnicornLogger - Pretty Printing DebugObj with nicer logging features
FREW/DBIx-Class-UnicornLogger-0.001004
-
17 Jan 2015 04:17:23 UTC
-
Search in distribution
- DBIx::Class::UnicornLogger::FromProfile - Define your UnicornLogger with a single string!
MooseX::Types::DBIx::Class - MooseX::Types for DBIx::Class objects
This simply provides some MooseX::Types style types for often shared DBIx::Class objects....
BPHILLIPS/MooseX-Types-DBIx-Class-0.05 - 22 Aug 2011 15:04:26 UTC - Search in distribution
Test::DBIx::Class::Factory - Automatically create test data for DBIx::Class
The goal of this distribution is to make creation of test data for DBIx::Class based applications/libraries much simpler, so your test cases can focus on the actual tests rather than creating the test data that they run on. It does this by allowing y...
GHARPER/Test-DBIx-Class-Factory-0.03 - 09 Apr 2014 07:22:02 UTC - Search in distribution
DBIx::Class::Cursor::Cached - cursor class with built-in caching support
ARCANEZ/DBIx-Class-Cursor-Cached-1.001004
-
07 Oct 2016 00:30:00 UTC
-
Search in distribution
DBIx::Class::CustomPrefetch - Custom prefetches for DBIx::Class
DBIx::Class onle allows joins for prefetches. But sometimes you can't use JOIN for prefetch. E.g. for prefetching many related objects to resultset with paging. Also you can use this module to create cross-database prefetches. This module provides ot...
GUGU/DBIx-Class-CustomPrefetch-0.09 - 07 Apr 2010 13:22:19 UTC - Search in distribution
DBIx::Class::DynamicDefault - Automatically set and update fields
Automatically set and update fields with values calculated at runtime....
MSTROUT/DBIx-Class-DynamicDefault-0.04 - 14 Apr 2012 09:19:01 UTC - Search in distribution
DBIx::Class::EasyConf::YAML - DBIx::Class Component for text based schema configuration
Generates a DBIx::Class::ResultSource from a YAML description. If the YAML is presented as shown in the SYNOPSIS the ResultSource class will be self POD documenting. If the class is executed with 'configuration' in @ARGV, a summary of the ResultSourc...
MONTUORI/DBIx-Class-EasyConf-YAML-0.11 - 18 Aug 2009 12:41:05 UTC - Search in distribution
DBIx::Class::FromValidators - Update or Insert DBIx::Class data from Validators
DBIx::Class::FromValidators allows you to Update or Insert DBIx::Class objects from FormValidator::Simple or Data::FormValidator....
WOREMACX/DBIx-Class-FromValidators-0.02 - 19 Nov 2007 12:19:27 UTC - Search in distribution
DBIx::Class::MassAssignable - use set_columns in DBIx::Class safely in a web app
Load this as a component into your DBIx::Class result classes then specify either which columns can be mass assigned (whitelist), or which ones are not allowed (blacklist) using set_columns. EXPORT None by default....
JONTAYLOR/DBIx-Class-MassAssignable-0.03 - 25 Oct 2012 23:53:36 UTC - Search in distribution
DBIx::Class::PhoneticSearch - Phonetic search with DBIC
This components allows for phonetic search of columns. If you add the "phonetic_search" attribute to a column, this component will add an extra column to the result class which is basically an index of the value based on its pronunciation. Every time...
PERLER/DBIx-Class-PhoneticSearch-0.01 - 29 Jun 2009 16:07:12 UTC - Search in distribution
DBIx::Class::Schema::Config - Credential Management for DBIx::Class
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
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.07051 - 23 Nov 2022 18:52:59 UTC - Search in distribution- DBIx::Class::Schema::Loader::DBI - DBIx::Class::Schema::Loader DBI Implementation.
- DBIx::Class::Schema::Loader::Base - Base DBIx::Class::Schema::Loader Implementation.
- DBIx::Class::Schema::Loader::Table - Class for Tables in DBIx::Class::Schema::Loader
- 38 more results from DBIx-Class-Schema-Loader »
DBIx::Class::VirtualColumns - Add virtual columns to DBIx::Class schemata
This module allows to specify 'virtual columns' in DBIx::Class schema classes. Virtual columns behave almost like regular columns but are not stored in the database. They may be used to store temporary information in the DBIx::Class::Row object and w...
MAROS/DBIx-Class-VirtualColumns-1.03 - 30 Nov 2009 19:33:09 UTC - Search in distribution
DBIx::Class::CompressColumns - Automatic Compression/Decompression of columns
This DBIx::Class component can be used to automatically compress and decompress data in selected columns....
JESSESTAY/DBIx-Class-CompressColumns-0.01001 - 20 Apr 2009 06:19:43 UTC - Search in distribution
DBIx::Class::DateTime::Epoch - Automatic inflation/deflation of epoch-based columns to/from DateTime objects
This module automatically inflates/deflates DateTime objects from/to epoch values for the specified columns. This module is essentially an extension to DBIx::Class::InflateColumn::DateTime so all of the settings, including "locale" and "timezone", ar...
BRICAS/DBIx-Class-DateTime-Epoch-0.10 - 22 Oct 2012 18:10:15 UTC - Search in distribution