Peace::DAO::Build - Database access object of Peace::Model::Build.
my $build_dao = Peace::DAO::Build->new(
dbh => $dbh,
);
my $build = $build_dao->recover_by_uuid(
uuid => $uuid,
);
$build_dao->create( build => $build, );
Peace::DAO::Build allows you to retrieve and create the representation of Peace::Model::Build in the database table builds.
Peace::DAO::Build implements the following instance methods:
my $build_dao = Peace::DAO::Build->new(
dbh => $dbh
);
Instances a Peace::DAO::Build object.
Peace::DAO::Build implements the following methods:
my $build = $build_dao->recover_by_uuid( uuid => $uuid );
Recovers a Peace::Model::Build from its uuid.
$build_dao->create( build => $build );
Creates the database representation of a Peace::Model::Build.