The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

SQL::Composer::Insert - INSERT statement

SYNOPSIS

my $insert =
SQL::Composer::Insert->new(into => 'table', values => [foo => 'bar']);
my $sql = $insert->to_sql; # 'INSERT INTO `table` (`foo`) VALUES (?)'
my @bind = $insert->to_bind; # ['bar']