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

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.