Insert implements the [dbx.Builder.Insert] interface method.
(table string, cols dbx.Params)
| 53 | |
| 54 | // Insert implements the [dbx.Builder.Insert] interface method. |
| 55 | func (b *dualDBBuilder) Insert(table string, cols dbx.Params) *dbx.Query { |
| 56 | return b.nonconcurrentDB.Insert(table, cols) |
| 57 | } |
| 58 | |
| 59 | // Upsert implements the [dbx.Builder.Upsert] interface method. |
| 60 | func (b *dualDBBuilder) Upsert(table string, cols dbx.Params, constraints ...string) *dbx.Query { |
no outgoing calls