DSLContext
This is the same as calling renderContext().inline(true).render(part) @param part The {@link QueryPart} to be rendered @return The rendered SQL
renderContext().inline(true).render(part)
834835836837838839840841842843844
public final void formatInsert(Writer writer, Table<?> table, Field<?>... f) { DSLContext ctx = DSL.using(configuration()); try { for (R record : this) { writer.append(ctx.renderInlined(insertInto(table, f).values(record.intoArray()))); writer.append(";\n"); } } catch (java.io.IOException e) { throw new IOException("Exception while writing INSERTs", e);