class Builder : StatementBuilder<Key>
A builder for an insert statement where the client code is interested in the ResultSet generated by the PreparedStatement. See Database.insertInto.
<init> |
A builder for an insert statement where the client code is interested in the ResultSet generated by the PreparedStatement. See Database.insertInto. Builder(db: Database, table: Table, setBody: (InsertStatement) -> Unit) |
run |
Execute the underlying PreparedStatement, then call resultBody with a Result object containing the ResultSet generated by PreparedStatement.getGeneratedKeys infix fun <T> run(resultBody: (Result) -> T): T |