class Impl[V[_[_]], R](insert: Insert[V, R], val columns: Seq[Column[_]], val valuesLists: Seq[Seq[Expr[_]]])(implicit val qr: Queryable[V[Column], R], dialect: DialectTypeMappers) extends InsertColumns[V, R]
Makes this INSERT query call JdbcStatement.getGeneratedKeys when it is executed, returning a Seq[R] where R is a Scala type compatible with the auto-generated primary key type (typically something like Int or Long)
Makes this INSERT query call JdbcStatement.getGeneratedKeys when it is executed, returning a Seq[R] where R is a Scala type compatible with the auto-generated primary key type (typically something like Int or Long)