logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DBIx::Class::Helper::Row::NumifyGet - Force numeric "context" on numeric columns

Author

       Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

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.

Name

       DBIx::Class::Helper::Row::NumifyGet - Force numeric "context" on numeric columns

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
           }
        }

See Also