NAME

DBIx::SQLEngine::Row::Base - Class for rows in a table

SYNOPSIS

$sqldb = DBIx::SQLEngine->new( ... );

$row_class = $sqldb->row_class( $table_name );

$row_set = $row_class->fetch_select( criteria => { status => 2 } );
$row_class->do_update(values => { status => 3 }, criteria => { status => 2 });

$row = $row_class->get_record(); 
$row->{somefield} = 'New Value';
$row->insert_row();

$row = $row_class->fetch_row( $primary_key );

$row->{somefield} = 'New Value';
$row->update_row();

$row->delete_row();

DESCRIPTION

This package is not yet complete.

SEE ALSO

See DBIx::SQLEngine for the overall interface and developer documentation.

See DBIx::SQLEngine::Docs::ReadMe for general information about this distribution, including installation and license information.