into<T extends Table, D> method
- TableInfo<
T, D> table
Starts an InsertStatement for a given table. You can use that statement
to write data into the table
by using InsertStatement.insert.
Implementation
InsertStatement<T, D> into<T extends Table, D>(TableInfo<T, D> table) {
return InsertStatement<T, D>(this, table);
}