Update returns a new UpdateBuilder with the given table name. See UpdateBuilder.Table.
(table string)
| 77 | // |
| 78 | // See UpdateBuilder.Table. |
| 79 | func Update(table string) UpdateBuilder { |
| 80 | return StatementBuilder.Update(table) |
| 81 | } |
| 82 | |
| 83 | // Delete returns a new DeleteBuilder with the given table name. |
| 84 | // |
searching dependent graphs…