Replace returns a InsertBuilder for this StatementBuilderType with the statement keyword set to "REPLACE".
(into string)
| 18 | // Replace returns a InsertBuilder for this StatementBuilderType with the |
| 19 | // statement keyword set to "REPLACE". |
| 20 | func (b StatementBuilderType) Replace(into string) InsertBuilder { |
| 21 | return InsertBuilder(b).statementKeyword("REPLACE").Into(into) |
| 22 | } |
| 23 | |
| 24 | // Update returns a UpdateBuilder for this StatementBuilderType. |
| 25 | func (b StatementBuilderType) Update(table string) UpdateBuilder { |
no test coverage detected