The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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']