NAME
Teng::Row - Teng's Row class
METHODS
- $row = Teng::Row->new
-
create new Teng::Row's instance
- $row->get_column($column_name)
-
my $val = $row->get_column($column_name);
get a column value from a row object.
Note: This method does not inflate values.
- $row->get_columns
-
my $data = $row->get_columns;
Does
get_column
, for all column values.Note: This method does not inflate values.
- $row->set_columns(\%new_row_data)
-
$row->set_columns({$col => $val});
set columns data.
- $row->set_column($col => $val)
-
$row->set_column($col => $val);
set column data.
- $row->get_dirty_columns
-
returns those that have been changed.
- $row->update([$arg])
-
update is executed for instance record.
It works by schema in which primary key exists.
$row->update({name => 'tokuhirom'}); # or $row->set({name => 'tokuhirom'}); $row->update;
- $row->delete
-
delete is executed for instance record.
It works by schema in which primary key exists.
- my $refetched_row = $row->refetch;
-
refetch record from database. get new row object.
- $row->handle
-
get teng object.
$row->handle->single('table', {id => 1});
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 204:
=over without closing =back