* Creates an insert query. * * Calling this method will create new rows in a table. Use `.values()` method to specify which values to insert. * * See docs: https://orm.drizzle.team/docs/insert * * @param table The table to insert into. * * @example * * ```ts
(into: TTable)
| 323 | * ``` |
| 324 | */ |
| 325 | function insert<TTable extends SQLiteTable>(into: TTable): SQLiteInsertBuilder<TTable, TResultKind, TRunResult> { |
| 326 | return new SQLiteInsertBuilder(into, self.session, self.dialect, queries); |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * Creates a delete query. |