The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Teng::Plugin::FindOrCreate - provide find_or_create method for your Teng class.

NAME

    package MyDB;
    use parent qw/Teng/;
    __PACKAGE__->load_plugin('FindOrCreate');

    package main;
    my $db = MyDB->new(...);
    my $row = $db->find_or_create('user',{name => 'lestrrat'});

DESCRIPTION

This plugin provides find_or_create method.

METHODS

$row = $db->find_or_create($table[, \%args]])

$table table name for counting

\%args : HashRef for row data.