The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DBIx::Skinny::Row - DBIx::Skinny's Row class

METHODS

get_column

    my $val = $row->get_column($col);

get a column value from a row object.

get_columns

    my %data = $row->get_columns;

Does get_column, for all column values.

set

    $row->set({$col => $val});

set columns data.

get_dirty_columns

returns those that have been changed.

insert

insert row data. call find_or_create method.

update

update is executed for instance record.

It works by schema in which primary key exists.

delete

delete is executed for instance record.

It works by schema in which primary key exists.