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