Update implements the [dbx.Builder.Update] interface method.
(table string, cols dbx.Params, where dbx.Expression)
| 63 | |
| 64 | // Update implements the [dbx.Builder.Update] interface method. |
| 65 | func (b *dualDBBuilder) Update(table string, cols dbx.Params, where dbx.Expression) *dbx.Query { |
| 66 | return b.nonconcurrentDB.Update(table, cols, where) |
| 67 | } |
| 68 | |
| 69 | // Delete implements the [dbx.Builder.Delete] interface method. |
| 70 | func (b *dualDBBuilder) Delete(table string, where dbx.Expression) *dbx.Query { |
no outgoing calls
no test coverage detected