debian man page for dbix::class::helper::row::numifyget

Query: dbix::class::helper::row::numifyget

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

DBIx::Class::Helper::Row::NumifyGet(3pm)		User Contributed Perl Documentation		  DBIx::Class::Helper::Row::NumifyGet(3pm)

NAME
DBIx::Class::Helper::Row::NumifyGet - Force numeric "context" on numeric columns
VERSION
version 2.013002
SYNOPSIS
package MyApp::Schema::Result::Foo_Bar; __PACKAGE__->load_components(qw{Helper::Row::NumifyGet Core}); __PACKAGE__->table('Foo'); __PACKAGE__->add_columns( foo => { data_type => 'integer', is_nullable => 0, is_numeric => 1, }, ); sub TO_JSON { return { foo => $self->foo, # this becomes 0 instead of "0" due to context } }
METHODS
get_column This is the method that "converts" the values. It just checks for "is_numeric" and if that is true it will numify the value. get_columns This method also "converts" values, but this one is called a lot more rarely. Again, It just checks for "is_numeric" and if that is true it will numify the value.
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::Row::NumifyGet(3pm)
Related Man Pages
dbix::class::helper::resultset::autoremovecolumns(3pm) - debian
dbix::class::helper::resultset::me(3pm) - debian
dbix::class::helper::row::jointable(3pm) - debian
dbix::class::helper::row::storagevalues(3pm) - debian
dbix::class::helpers(3pm) - debian
Similar Topics in the Unix Linux Community
Row to Columns
Axel 2.0 (trunk branch)
Axel 2.3 (trunk branch)
Replace First Column and First Row Data
Add Row from First Row (Split Row)