insert method

InsertStatement<Tbl, Row> insert()

Creates an insert statment to be used to compose an insert on the table.

This is equivalent to calling DatabaseConnectionUser.into on the captured table. See that method for more information.

Implementation

InsertStatement<Tbl, Row> insert() => attachedDatabase.into(this);