(ctx Context, m *qcode.Mutate, values func())
| 628 | } |
| 629 | |
| 630 | func (d *SQLiteDialect) RenderInsert(ctx Context, m *qcode.Mutate, values func()) { |
| 631 | ctx.WriteString(`INSERT INTO `) |
| 632 | ctx.ColWithTable(m.Ti.Schema, m.Ti.Name) |
| 633 | ctx.WriteString(` (`) |
| 634 | values() |
| 635 | ctx.WriteString(`) `) |
| 636 | d.RenderReturning(ctx, m) |
| 637 | } |
| 638 | |
| 639 | func (d *SQLiteDialect) RenderUpdate(ctx Context, m *qcode.Mutate, set func(), from func(), where func()) { |
| 640 | // Pre-select IDs into _gj_ids for later use by the SELECT query |
nothing calls this directly
no test coverage detected