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

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