Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dbix::class::helper::resultset::nocolumns(3pm) [debian man page]

DBIx::Class::Helper::ResultSet::NoColumns(3pm)		User Contributed Perl Documentation	    DBIx::Class::Helper::ResultSet::NoColumns(3pm)

NAME
DBIx::Class::Helper::ResultSet::NoColumns - Look ma, no columns! VERSION
version 2.013002 SYNOPSIS
package MySchema::ResultSet::Bar; use strict; use warnings; use parent 'DBIx::Class::ResultSet'; __PACKAGE__->load_components('Helper::ResultSet::NoColumns'); # in code using resultset: my $rs = $schema->resultset('Bar')->no_columns->search(undef, { '+columns' => { 'foo' => 'me.foo' }, }); DESCRIPTION
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. METHODS
no_columns $rs->no_columns Returns resultset with zero columns configured, fresh for the addition of new columns. AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Arthur Axel "fREW" Schmidt. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-18 DBIx::Class::Helper::ResultSet::NoColumns(3pm)

Check Out this Related Man Page

DBIx::Class::Helper::ResultSet::ResultClassDWIM(3pm)	User Contributed Perl Documentation   DBIx::Class::Helper::ResultSet::ResultClassDWIM(3pm)

NAME
DBIx::Class::Helper::ResultSet::ResultClassDWIM - result_class => '::HRI' == WIN VERSION
version 2.013002 SYNOPSIS
package MyApp::Schema::ResultSet::Foo; __PACKAGE__->load_components(qw{Helper::ResultSet::ResultClassDWIM}); ... 1; And then elsewhere: my $data = $schema->resultset('Foo')->search({ name => 'frew' }, { result_class => '::HRI' })->all; DESCRIPTION
This component allows you to prefix your "result_class" with "::" to indicate that it should use the default namespace, namely, "DBIx::Class::ResultClass::". "::HRI" has been hardcoded to work. Of course "::HashRefInflator" would also work fine. See "NOTE" in DBIx::Class::Helper::ResultSet for a nice way to apply it to your entire schema. AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Arthur Axel "fREW" Schmidt. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-18 DBIx::Class::Helper::ResultSet::ResultClassDWIM(3pm)
Man Page

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Adding columns to excel files using Perl

How do I add 4 columns to an excel file using Perl? The 4 headers for those columns will all have different names? Please help and I greatly appreciate... (1 Reply)
Discussion started by: dolo21taf
1 Replies

2. Programming

Output Arrays as columns perl

Ok so I am new to perl and I am trying to write a random .cpt file for a GMT script for a class. Anyways I successfully read in the columns out of the file I wanted and I was able to generate 3 arrays full of random numbers that were the same length as the columns and now I just need to output them... (1 Reply)
Discussion started by: bflinchum
1 Replies